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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #202946;
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header Styles */
.main-header {
    background-color: #202946;
    box-shadow: 0 4px 20px rgba(32, 41, 70, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

.language-switch a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.language-switch a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.main-header.scrolled {
    background-color: rgba(32, 41, 70, 0.98);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    background: #f8f9fa;
    padding: 140px 0 60px;
    color: #202946;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.heading-decoration {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.heading-decoration-large {
    width: 600px;
    height: auto;
    margin: 3rem auto;
    display: block;
}

/* White background section for careers */
.careers-white-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.careers-white-section .about-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #202946;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.careers-white-section .about-description::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #202946, #2a3458);
    border-radius: 2px;
}

.careers-email-simple {
    font-size: 1.2rem;
    color: #202946;
    margin: 1rem 0 2rem 0;
    text-align: center;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #202946;
    margin-bottom: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    width: 100%;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: #202946;
    width: 100%;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #202946;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    width: 100%;
    text-align: center;
}

.econmed-link {
    color: #202946;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.econmed-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #202946;
    transition: width 0.3s ease;
}

.econmed-link:hover {
    opacity: 0.9;
}

.econmed-link:hover::after {
    width: 100%;
}

/* Customer Groups */
.customer-groups {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.group-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.group-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.group-item h3 {
    font-size: 1.5rem;
    color: #202946;
    margin-bottom: 1rem;
    font-weight: 600;
}

.group-item p {
    color: #202946;
    line-height: 1.6;
    font-size: 1.1rem;
}

.group-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.group-icon img {
    width: 70px;
    height: 70px;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.group-item:hover .group-icon img {
    transform: scale(1.1);
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 100px 0;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-text {
    text-align: left;
}

.services-image {
    text-align: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-section h2 {
    font-size: 2.5rem;
    color: #202946;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #202946;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Approach Section */
.approach-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.5rem;
    color: #202946;
    margin-bottom: 3rem;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.approach-item h3 {
    font-size: 1.5rem;
    color: #202946;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: #202946;
    line-height: 1.6;
    font-size: 1.1rem;
}

.approach-icon {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.approach-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.approach-item:hover .approach-icon img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Center about-content for services pages */
.services-page .about-content {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-page .about-content img {
    width: 500px;
    height: auto;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.services-page .about-text {
    text-align: center;
}

.services-page .about-description {
    text-align: center;
    margin: 0 auto;
}

/* Services page customer groups - 1x3 grid */
.services-page .customer-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .services-section h2 {
    font-size: 1.8rem;
    color: #202946;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .group-item {
    flex: none;
    max-width: none;
}

/* Mobile responsive for services page cards */
@media (max-width: 768px) {
    .services-page .customer-groups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.about-text {
    text-align: left;
}

.about-text .cta-button {
    margin-top: 1rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 2.5rem;
    color: #202946;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-section .about-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #202946;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #202946 0%, #2a3458 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Service Items */
.service-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-item h3 {
    font-size: 1.25rem;
    color: #202946;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #202946;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.service-item li {
    color: #202946;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Team Section */
.team-section {
    background-color: #f8f9fa;
    padding: 40px 0 80px;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    color: #202946;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member .team-linkedin {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 8%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #202946;
    margin-bottom: 0.5rem;
}

.team-member p {
    text-align: left;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.team-member a {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.linkedin-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #202946;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(32,41,70,0.08);
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition: background 0.2s, box-shadow 0.2s;
}

.linkedin-bg img {
    width: 22px;
    height: 22px;
    display: block;
}

.team-member a:hover .linkedin-bg {
    background: #32407a;
    box-shadow: 0 4px 12px rgba(32,41,70,0.15);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #202946;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-section p {
    color: #202946;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.contact-button {
    background-color: #202946;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #2a3458;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 41, 70, 0.2);
    color: #fff !important;
}

/* Footer */
.main-footer {
    background-color: #202946;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.footer-column {
    text-align: center;
    flex: 1;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: #fff;
}

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

.footer-bottom .footer-logo {
    margin-bottom: 1.5rem;
}

.footer-bottom .footer-logo img {
    height: 40px;
    width: auto;
}

.footer-bottom p {
    color: white;
    margin: 0;
    font-weight: 300;
}

.footer-bottom p + p {
    margin-top: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Content Section */
.content-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

.content-section .container {
    max-width: 800px;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202946;
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(32, 41, 70, 0.1);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #202946;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.content-text h2:first-of-type {
    margin-top: 0;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #495057;
    font-size: 1.05rem;
}

.content-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 1.05rem;
}

.content-text strong {
    color: #202946;
    font-weight: 600;
}

.content-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

.hero-section,
.about-content,
.services-section,
.team-section,
.contact-section {
    animation: fadeIn 0.8s ease-out;
}

main {
    min-height: 100vh;
    overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        height: 80px;
    }

    .main-nav {
        display: none;
    }

    .language-switch a {
        padding: 0.4rem 1rem;
    }

    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-content {
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .customer-groups {
        flex-direction: column;
        align-items: center;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2.5rem 0;
    }

    .group-item {
        min-width: 280px;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .hero-section .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .group-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .group-item p {
        font-size: 1rem;
    }

    .group-icon img {
        width: 60px;
        height: 60px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-text {
        text-align: center;
    }

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

    .services-description {
        font-size: 1.1rem;
    }

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

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

    .approach-item {
        padding: 2rem;
    }

    .approach-item h3 {
        font-size: 1.25rem;
    }

    .approach-item p {
        font-size: 1rem;
    }

    .approach-icon img {
        width: 100px;
        height: 100px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

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

    .about-section .about-description {
        font-size: 1.1rem;
    }

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

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

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }

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

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        flex: none;
    }

    .content-section {
        padding: 100px 0 60px;
    }
    
    .content-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-text {
        padding: 2rem;
        margin: 0 10px;
    }
    
    .content-text h2 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem 0;
    }
    
    .content-text p,
    .content-text li {
        font-size: 1rem;
    }
}

/* Scroll Down Button */
.scroll-down-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(32, 41, 70, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 3rem auto;
    position: relative;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

/* Standalone scroll button styling */
body > .scroll-down-btn {
    display: block;
    margin: 3rem auto;
    text-align: center;
}

.scroll-down-btn:hover {
    background-color: rgba(32, 41, 70, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-down-btn::before {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    40% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
    60% {
        transform: translate(-50%, -50%) translateY(-4px);
    }
}

.scroll-down-btn:hover::before {
    animation: none;
    transform: translate(-50%, -50%) translateY(-2px);
}

/* Ensure scroll button is visible in hero section */
.hero-text .scroll-down-btn {
    display: inline-block;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}

.hero-text {
    position: relative;
}

.hero-section-image {
    width: 400px;
    height: auto;
    margin: 2rem auto;
    display: block;
} 