/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('../img/bg.jpeg') center/cover no-repeat;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 100px 0 80px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

/* About Section */
.about-section {
  background: var(--bg-white);
}

.about-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.about-text .lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Experience Section */
.experience-section {
  background: var(--bg-light);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-marker {
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.company-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--bg-white);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.timeline-date {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-right: 80px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 500;
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.achievements {
  list-style: none;
  padding: 0;
}

.achievements li {
  padding-left: 25px;
  margin-bottom: 8px;
  position: relative;
  color: var(--text-light);
}

.achievements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Skills Section */
.skills-section {
  background: var(--bg-white);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.skill-category h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-name {
  font-weight: 600;
  color: var(--text-dark);
}

.skill-bar {
  height: 10px;
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  transition: width 1s ease;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Education Section */
.education-section {
  background: var(--bg-light);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.education-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.education-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.education-item h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.education-item h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.education-date {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--text-light);
  border-radius: 12px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.education-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Projects Section */
.projects-section {
  background: var(--bg-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.project-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.project-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--secondary-color);
}

/* Q&A Section */
.qa-section {
  background: var(--bg-light);
}

.qa-container {
  max-width: 800px;
  margin: 0 auto;
}

.qa-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.qa-item:hover {
  box-shadow: var(--shadow-md);
}

.qa-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.3s ease;
}

.qa-question:hover {
  background: var(--bg-light);
}

.qa-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.qa-item.active .qa-icon {
  transform: rotate(45deg);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.qa-item.active .qa-answer {
  max-height: 1000px;
  padding: 0 30px 25px;
}

.qa-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  padding: 10px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  text-align: center;
  padding: 40px 0;
}

.footer p {
  margin: 5px 0;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-info {
    gap: 10px;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-marker {
    left: 5px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .company-logo {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }

  .timeline-content h3 {
    padding-right: 60px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-info {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    text-align: center;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .about-text .lead {
    font-size: 1.1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat {
    padding: 15px;
  }

  .timeline-content {
    padding: 20px 15px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    padding-right: 0;
  }

  .timeline-content h4 {
    font-size: 0.95rem;
  }

  .company-logo {
    display: none;
  }

  .timeline-date {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .achievements li {
    font-size: 0.9rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    padding: 20px 15px;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .education-item {
    padding: 20px 15px;
  }

  .skill-tags {
    gap: 8px;
  }

  .tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .qa-item {
    margin-bottom: 15px;
  }

  .qa-question {
    font-size: 0.95rem;
    padding: 15px;
  }

  .qa-answer {
    font-size: 0.9rem;
  }

  .qa-item.active .qa-answer {
    padding: 15px;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .social-links {
    flex-direction: column;
    gap: 10px;
  }

  .social-link {
    width: 100%;
    text-align: center;
  }

  .footer {
    padding: 30px 0;
    font-size: 0.9rem;
  }
}

/* Print Styles for PDF Generation */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  body {
    font-size: 11pt;
    line-height: 1.4;
  }

  /* Hide navigation and interactive elements */
  .navbar,
  .nav-toggle,
  .hero-cta,
  .contact-form,
  .qa-icon {
    display: none !important;
  }

  /* Hero section adjustments */
  .hero {
    min-height: auto;
    padding: 40px 0;
    page-break-after: avoid;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  }

  .hero-content {
    padding: 20px 0;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .hero-info {
    margin-bottom: 0;
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
  }

  /* Section adjustments */
  .section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    page-break-after: avoid;
  }

  /* About section */
  .about-content {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }

  .about-image img {
    max-width: 180px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat {
    padding: 10px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Timeline adjustments */
  .timeline-item {
    page-break-inside: avoid;
    margin-bottom: 25px;
  }

  .timeline-content {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    padding: 20px;
  }

  .timeline-date {
    background: var(--primary-color) !important;
  }

  .company-logo {
    width: 50px;
    height: 50px;
  }

  /* Skills section */
  .skills-section {
    display: block !important;
    page-break-inside: avoid;
  }

  .skills-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .skill-category {
    display: block !important;
    page-break-inside: avoid;
  }

  .skill-items {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }

  .skill-item {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
  }

  .skill-name {
    display: block !important;
  }

  .skill-bar {
    display: block !important;
    background: #e5e7eb !important;
    height: 10px;
    border-radius: 10px;
  }

  .skill-progress {
    display: block !important;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
    height: 100%;
    border-radius: 10px;
  }

  .skill-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tag {
    display: inline-block !important;
    background: #f3f4f6 !important;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    border-radius: 15px;
  }

  /* Education section */
  .education-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .education-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    padding: 20px;
  }

  /* Cases/Projects section */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    page-break-inside: avoid;
  }

  .project-content {
    padding: 15px;
  }

  .project-image {
    display: none;
  }

  /* Q&A section */
  .qa-item {
    page-break-inside: avoid;
    margin-bottom: 15px;
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
  }

  .qa-question {
    padding: 15px;
    background: #f9fafb !important;
    cursor: default;
  }

  .qa-answer {
    max-height: none !important;
    padding: 15px !important;
    display: block !important;
  }

  /* Contact section */
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    page-break-inside: avoid;
  }

  .social-links a {
    background: #f3f4f6 !important;
    color: var(--text-dark) !important;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
    background: var(--text-dark) !important;
    page-break-before: avoid;
  }

  /* Links */
  a {
    text-decoration: none;
    color: inherit;
  }

  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .social-link[href^="http"]:after,
  .project-link[href^="http"]:after {
    content: "";
  }

  /* Page breaks */
  h2, h3 {
    page-break-after: avoid;
  }

  ul, ol {
    page-break-inside: avoid;
  }

  /* Ensure backgrounds print */
  .timeline-content,
  .education-item,
  .project-card,
  .stat {
    background: white !important;
  }

  .about-section,
  .skills-section,
  .projects-section {
    background: white !important;
  }

  .experience-section,
  .education-section,
  .qa-section {
    background: #f9fafb !important;
  }
}
