/* Reset and base styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding-top: 120px; /* Increased to account for taller header */
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000000;
    line-height: 1.5;
}

body::before {
    display: none;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

/* Reset default text colors */
body, h1, h3, p, a, li {
    color: #000000;
}

/* Keep gradient only for hero h2 */
.hero h2 {
    background: linear-gradient(to right, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

header {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 100px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eaeaea;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

.xlive-logo {
    z-index: 1001;
    display: flex;
    align-items: center;
    height: 100px;
}

.xlive-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    align-items: center;
}

.brand-text span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 00;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    margin: 0;
    z-index: 1001;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

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

.nav-list a.active::after {
    width: 100%;
}

.hero {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    flex: 0 0 45%;
    text-align: left;
    max-width: 500px;
    padding-right: 2rem;
}

.hero h2 {
    background: linear-gradient(to right, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero p {
    color: #333333;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.videos {
    flex: 0 0 400px;
    padding: 10px;
    text-align: justify;
    flex: 0 0 50%;
    margin: 0;
    align-self: center;
    min-width: 100px;
}

.videos h2, .services h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.videos p, .services p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero .whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #00a859;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero .whatsapp-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.5);
    background-color: #008c4a;
    border-color: #ffffff;
}

.hero .whatsapp-button:active {
    transform: translateY(0);
    background-color: #007a40;
    box-shadow: 0 2px 10px rgba(0, 168, 89, 0.4);
}

.hero .whatsapp-button img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Media Queries for Responsive Navigation */
@media screen and (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 60px 20px;
        gap: 3rem;
    }

    .hero-content {
        flex: 0 0 40%;
        max-width: 450px;
        padding-right: 1rem;
    }

    .videos, .services {
        flex: 0 0 380px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 0.8rem 1.5rem;
        min-height: 80px;
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    body {
        padding-top: 100px;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    
    .videos h2, .services h2 {
        font-size: 1.3rem;
    }

    .videos p, .services p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Hamburger menu animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-brand {
        gap: 1rem;
    }

    .xlive-logo {
        height: 80px;
    }

    .brand-text span {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 0.5rem 1rem;
        min-height: 70px;
    }

    .main-nav {
        width: 85%;
        padding: 5rem 1.5rem 1.5rem;
    }

    .nav-list a {
        font-size: 1.1rem;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .videos, .services {
        max-width: 400px;
    }

    .personal {
        width: 100%;
    }

    .xlive-logo {
        height: 70px;
    }

    body {
        padding-top: 90px;
    }

    .brand-text span {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 320px) {
    header {
        padding: 0.5rem;
    }

    .main-nav {
        width: 100%;
        padding: 4rem 1rem 1rem;
    }

    .nav-list a {
        font-size: 1rem;
    }
}

.row {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    gap: 0rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.svg-videos, .svg-models, .svg-modera {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 0rem;
    min-width: 200px;
}

.svg-videos svg, .svg-models svg, .svg-modera svg {
    width: 37px;
    height: 42px;
    color: #aca4a4;
    margin-bottom: 0.5rem;
}

.svg-videos h3, .svg-models h3, .svg-modera h3 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 600;
    text-align: center;
}

.svg-videos p, .svg-models p, .svg-modera p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    text-align: center;
}

/* Add responsive styles */
@media screen and (max-width: 768px) {
    .row {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .svg-videos, .svg-models, .svg-modera {
        min-width: 150px;
        padding: 0.5rem;
    }
    
    .svg-videos h3, .svg-models h3, .svg-modera h3 {
        font-size: 1.2rem;
    }
    
    .svg-videos p, .svg-models p, .svg-modera p {
        font-size: 0.9rem;
    }
}


.viewport {
    height: 40vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.scroll-wrapper {
    display: flex;
    flex-direction: column;
    animation: scrollUp 45s linear infinite;
    position: relative;
    z-index: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    padding: 10px 0;
    max-width: 900px;
    margin: 0 auto;
}

.grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media screen and (max-width: 1024px) {
    .row,
    .viewport,
    .grid {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .row {
        padding: 1.5rem 0;
    }

    .viewport {
        height: 30vh;
        padding: 0 1rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 6px;
        padding: 8px 0;
    }

    .grid img {
        height: 100px;
    }
}

@media screen and (max-width: 480px) {
    .row {
        padding: 1rem 0;
    }

    .viewport {
        padding: 0 0.5rem;
    }

    .grid {
        padding: 6px 0;
    }
}

.services {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  color: #666666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-card ul li::before {
  content: "•";
  color: #000000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .services {
    padding: 3rem 1rem;
  }

  .services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

.testimonials {
  padding: 4rem 2rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eaeaea;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
}

.testimonial-content::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: #eaeaea;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
}

.author-info h4 {
  color: #000000;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.author-info p {
  color: #666666;
  font-size: 0.9rem;
  margin: 0.25rem 0 0 0;
}

@media screen and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .testimonials {
    padding: 3rem 1rem;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .quote {
    font-size: 1rem;
  }

  .author-info h4 {
    font-size: 1rem;
  }
}

.why-choose-us {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #000000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

/* FAQ Styles */
.faq {
  padding: 4rem 2rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 700;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem;
  margin: 1rem 0;
  color: #666666;
}

.faq-answer ul {
  padding: 0 1.5rem 1.5rem 3rem;
  margin: 0;
  list-style-type: disc;
}

.faq-answer li {
  color: #666666;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .why-choose-us,
  .faq {
    padding: 3rem 1rem;
  }

  .why-choose-us h2,
  .faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .faq-answer p,
  .faq-answer ul {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  text-align: center;
  margin-top: 4rem;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.cta-feature:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.check-icon {
  color: #4CAF50;
  font-size: 1.5rem;
  font-weight: bold;
}

.cta-feature p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  text-align: left;
}

.cta-button {
  display: inline-block;
  background-color: #00a859;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
  border: 2px solid #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.5);
  background-color: #008c4a;
  border-color: #ffffff;
}

.cta-button:active {
  transform: translateY(-1px);
  background-color: #007a40;
  box-shadow: 0 2px 10px rgba(0, 168, 89, 0.4);
}

.cta-note {
  color: #ffffff;
  opacity: 0.8;
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-feature {
    padding: 0.8rem 1.2rem;
  }

  .cta-feature p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-width: 1px;
  }

  .hero .whatsapp-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-width: 1px;
  }
}

.locations {
  padding: 4rem 2rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.locations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 700;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.location-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
}

.location-card.headquarters {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #4CAF50;
  transform: scale(1.05);
}

.location-card.headquarters::before {
  content: "Sede Principal";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF50;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.location-card.headquarters:hover {
  transform: translateY(-5px) scale(1.05);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.location-details {
  text-align: left;
}

.location-name {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-address,
.location-hours,
.location-contact {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-address::before {
  content: "📍";
}

.location-hours::before {
  content: "🕒";
}

.location-contact::before {
  content: "📞";
}

.location-mail::before {
    content: "✉️";
  }
@media screen and (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-card.headquarters {
    grid-column: span 2;
    transform: scale(1);
  }
  
  .location-card.headquarters:hover {
    transform: translateY(-5px);
  }
}

@media screen and (max-width: 768px) {
  .locations {
    padding: 3rem 1rem;
  }

  .locations h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-card.headquarters {
    grid-column: span 1;
  }

  .location-card {
    padding: 1.5rem;
  }

  .location-card h3 {
    font-size: 1.3rem;
  }

  .location-name {
    font-size: 1rem;
  }
}

footer {
  background-color: #f8f9fa;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  color: #4CAF50;
}

footer p {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 1.5rem 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  footer p {
    font-size: 0.85rem;
  }
}