:root {
  --primary-color: #2c3e50;
  --primary-dark: #1a2530;
  --primary-light: #3d5a73;
  --secondary-color: #f8f1e9;
  --accent-color: #3498db;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --background-light: #ffffff;
  --background-off: #f9f9f9;
  --border-color: #e0e0e0;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
}

.desktop-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-menu ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.desktop-menu ul li a:hover {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--primary-color);
}

.desktop-menu ul li a.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.desktop-menu ul li a.active::before {
  display: none;
}

.desktop-menu ul li a.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.mobile-menu ul li a.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-left: 3px solid var(--accent-color);
  padding-left: 10px;
}

.desktop-menu ul li a.nav-cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

.desktop-menu ul li a.nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

.desktop-menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.desktop-menu ul li a:hover:after,
.desktop-menu ul li a.active:after {
  width: 100%;
}

.desktop-menu ul li a.nav-cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

.desktop-menu ul li a.nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.desktop-menu ul li a.nav-cta:after {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1001;
  padding: 4rem 2rem;
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/4c08xn.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-light);
  padding: 0 5%;
  position: relative;
}

.hero-content {
  max-width: 600px;
  animation: fadeIn 1s ease-in-out;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--background-off);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-light);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--background-off);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

blockquote {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

blockquote:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: 20px;
  top: -10px;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info .section-header {
  text-align: left;
}

.contact-info .section-header h2:after {
  left: 0;
  transform: none;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.contact-item p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.contact-form-container {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  font-family: var(--body-font);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.check-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  opacity: 0;
  background-color: var(--primary-dark);
}

.check-box svg {
  width: 30px;
  height: 30px;
  margin: 5px;
  position: relative;
}

svg path {
  stroke-width: 3;
  stroke: #fff;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  stroke-linecap: round;
}

.active {
  background: var(--primary-dark);
  transition: 0.5s ease;
}

.active .check-box {
  right: 0;
  opacity: 1;
  transition: 0.5s ease;
}

.active #btn-text {
  margin-right: 70px;
  transition: 0.5s ease;
}

.active svg path {
  stroke-dashoffset: 0;
  transition: 0.5s ease;
  transition-delay: 0.5s;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4:after,
.footer-social h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info .section-header {
    text-align: center;
  }
  
  .contact-info .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .services-grid,
  .testimonial-list {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4:after,
  .footer-social h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .submit-btn {
    width: 100%;
  }
}

/* Página Sobre */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4c08xn.jpg') center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 8rem 0 4rem;
  margin-top: 0;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.about-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.about-image img:hover {
  filter: grayscale(0%);
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.about-text .section-header h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-text .section-header h2:after {
  display: none;
}

.about-card {
  background-color: transparent;
  padding: 0 0 2rem 0;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border-left: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card:hover {
  transform: none;
  box-shadow: none;
}

.about-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.about-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.education-section {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.education-card {
  background-color: transparent;
  padding: 1.5rem 0;
  transition: var(--transition);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.education-card:hover {
  transform: none;
  box-shadow: none;
}

.education-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.education-card h3 {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

.education-card h3:after {
  display: none;
}

.education-card ul {
  list-style-type: none;
  margin-left: 0;
}

.education-card ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.education-card ul li:before {
  content: '—';
  color: var(--primary-color);
  opacity: 0.7;
  font-weight: normal;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.experience-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 1;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: calc(50% + 40px);
}

.timeline-item:nth-child(odd) .timeline-content:before {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--background-light);
  transform: rotate(45deg);
  box-shadow: 5px -5px 5px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(even) .timeline-content:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--background-light);
  transform: rotate(45deg);
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.timeline-content ul {
  list-style-position: inside;
  margin-left: 1rem;
}

.timeline-content ul li {
  margin-bottom: 0.5rem;
}

.social-section {
  background-color: var(--background-off);
  padding: 5rem 0;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--text-dark);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.social-link i {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--primary-color);
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/IMG_20241029_162815_598.webp') center/cover no-repeat;
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-text .section-header {
    text-align: center;
  }
  
  .about-text .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    left: 80px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before,
  .timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    padding: 1rem;
  }
  
  .social-link {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
  }
}