:root {
    --primary-green: #8CC63F;
    --primary-blue: #00A0DC;
    --dark-blue: #0D1117;
    --white: #FFFFFF;
    --lig

    /* Tech Grid Pattern */
    .hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image:
            radial-gradient(circle at center, var(--primary-blue) 1px, transparent 1px),
            radial-gradient(circle at center, var(--primary-green) 1px, transparent 1px);
        background-size: 40px 40px, 60px 60px;
        background-position: 0 0, 20px 20px;
        opacity: 0.1;
        z-index: 1;
    }

    /* Base Gradient */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --primary-green: #8CC63F;
    --primary-blue: #00A0DC;
    --dark-blue: #111827;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.btn {
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-green), #386b09);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-green), #386b09);
    box-shadow: 0 4px 25px rgba(140, 198, 63, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 20px;
    background-color: transparent;
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--dark-blue);
    padding: 0;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
}

/* Tech Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        radial-gradient(circle at center, var(--primary-blue) 1px, transparent 1px),
        radial-gradient(circle at center, var(--primary-green) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Base Gradient and Circuit Pattern */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        linear-gradient(120deg,
            rgba(13, 17, 23, 0.95) 0%,
            rgba(13, 17, 23, 0.85) 100%),
        radial-gradient(circle at 0% 0%, rgba(0, 160, 220, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(140, 198, 63, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 160, 220, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            transparent 0,
            transparent 10px,
            rgba(140, 198, 63, 0.05) 10px,
            rgba(140, 198, 63, 0.05) 11px),
        repeating-linear-gradient(-45deg,
            transparent 0,
            transparent 10px,
            rgba(0, 160, 220, 0.05) 10px,
            rgba(0, 160, 220, 0.05) 11px);
    z-index: 2;
    pointer-events: none;
}

/* Removed gridMove animation as it's no longer needed */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    width: 100%;
    padding: clamp(1rem, 2vh, 2rem) 0;
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* Tech Geometric Elements */
.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-geometric::before {
    content: '';
    position: absolute;
    /* Removing the rotating shape element */
}

.hero-geometric::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    transform-origin: center;
    animation: pulse 4s ease-in-out infinite;
}

/* Tech Lines */
.tech-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    opacity: 0.1;
}

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    height: 1px;
    width: 100%;
}

.tech-line:nth-child(1) {
    top: 20%;
    animation: lineMove 15s linear infinite;
}

.tech-line:nth-child(2) {
    top: 40%;
    animation: lineMove 20s linear infinite reverse;
}

.tech-line:nth-child(3) {
    top: 60%;
    animation: lineMove 18s linear infinite;
}

.tech-line:nth-child(4) {
    top: 80%;
    animation: lineMove 22s linear infinite reverse;
}

/* Removed rotate animation as it's no longer needed */

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw + 3vh, 7rem);
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vw + 1vh, 2rem);
}

.hero h1 .highlight-green {
    background: linear-gradient(90deg,
            var(--primary-green) 0%,
            #9ed350 25%,
            #54c4e0 75%,
            var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.1em;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero h1 .highlight-blue {
    background: linear-gradient(90deg,
            var(--primary-blue) 0%,
            #54c4e0 25%,
            #9ed350 75%,
            var(--primary-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.1em;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: clamp(1rem, 1.5vw + 0.5vh, 1.25rem);
    margin-bottom: clamp(1.5rem, 2vw + 1vh, 2.5rem);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
    z-index: 10;
}

.hero-buttons .btn {
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
}

/* Business Units Section */
.business-units {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-title p {
    color: rgba(13, 17, 23, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.section-title .highlight-green {
    color: #28a745 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.unit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--white) 0%, rgba(140, 198, 63, 0.1) 50%, rgba(0, 160, 220, 0.1) 100%);
    border-color: rgba(140, 198, 63, 0.3);
}

.icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Support for Tailwind gradient classes */
.icon-container.bg-gradient-to-br.from-blue-500.to-green-500 {
    background: linear-gradient(135deg, #3b82f6, #10b981) !important;
}

.unit-card:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(140, 198, 63, 0.3);
}

.unit-icon {
    color: white;
    stroke: white;
}

.unit-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.unit-card p {
    color: rgba(13, 17, 23, 0.7);
    font-size: 14px;
}

.unit-card .saiba-mais {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    display: inline-block;
}

/* Differentials Section */
.differentials {
    padding: 100px 0;
    background-color: #f9fafb;
    color: var(--dark-blue);
}

.differentials .section-title h2 {
    color: var(--dark-blue);
}

.differentials .section-title p {
    color: rgba(13, 17, 23, 0.7);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.differential-card {
    text-align: center;
    padding: 30px;
    /* transition: all 0.3s ease; */
}

.differential-card .icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), #386b09);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.differential-icon {
    color: white;
    stroke: white;
}

.differential-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.differential-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-blue);
    border-radius: 20px;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info img {
    filter: brightness(0) invert(1);
}

.footer-info p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        text-align: center;
    }

    .hero-image img {
        max-width: 400px;
    }

    .units-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .nav-menu ul li a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }

    .nav-menu ul li .btn {
        min-width: auto;
        padding: 15px 30px;
        font-size: 16px;
    }

    /* Hero section adjustments */
    /* Hero fonts are now fluid and responsive automatically */

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    /* Grid adjustments */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vh, 3rem);
        text-align: center;
    }

    .units-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Header padding adjustment */
    header {
        padding: 15px 0;
    }

    .logo img {
        height: 25px;
    }
}

/* Additional responsive breakpoints */
@media (max-width: 480px) {
    /* Hero fonts are now fluid and responsive automatically */

    .section-title h2 {
        font-size: 28px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .business-units,
    .differentials,
    .cta-section {
        padding: 60px 0;
    }

    .unit-card,
    .differential-card {
        padding: 20px;
    }

    .nav-menu ul li .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Circuit Pattern */
.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Static grid lines */
.circuit-pattern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(to right, var(--primary-blue) 1px, transparent 1px),
        linear-gradient(to bottom, var(--primary-blue) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* Animated dots */
.circuit-pattern::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 50px 50px, var(--primary-green) 2px, transparent 2px),
        radial-gradient(circle at 150px 150px, var(--primary-blue) 2px, transparent 2px),
        radial-gradient(circle at 250px 250px, var(--primary-green) 2px, transparent 2px);
    background-size:
        300px 300px,
        300px 300px,
        300px 300px;
    animation: circuitMove 15s linear infinite;
}

@keyframes circuitMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 100px 0, 0 100px, 50px 50px, 150px 150px, 250px 250px;
    }
}

/* Data Flow Animation */
.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background:
        linear-gradient(45deg, transparent 48%, var(--primary-blue) 49%, var(--primary-blue) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--primary-green) 49%, var(--primary-green) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.05;
    animation: dataFlow 20s linear infinite;
}

@keyframes dataFlow {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    100% {
        transform: translateX(-30px) translateY(-30px) rotate(5deg);
    }
}

/* Enhanced Gradients */
.hero {
    background:
        linear-gradient(120deg,
            rgba(13, 17, 23, 0.97) 0%,
            rgba(13, 17, 23, 0.95) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 160, 220, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(140, 198, 63, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 160, 220, 0.2) 0%, transparent 50%),
        linear-gradient(60deg,
            rgba(140, 198, 63, 0.05) 0%,
            transparent 50%,
            rgba(0, 160, 220, 0.05) 100%);
    z-index: 3;
}

header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

.cta-button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #7ab32f;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2332 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('pattern.png') repeat;
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary-green);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--dark-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--dark-blue);
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.solution-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.solution-card p {
    color: #666;
    font-size: 14px;
}

/* Differentials Section */
.differentials {
    padding: 100px 0;
    background-color: #f9fafb;
}

.differentials .section-header h2 {
    color: var(--dark-blue);
}

.differentials .section-header p {
    color: var(--dark-blue);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.differential-card {
    text-align: center;
    padding: 30px;
}

.differential-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.differential-card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.differential-card p {
    color: rgba(13, 17, 23, 0.7);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--dark-blue);
    display: inline-block;
    margin-top: 30px;
}

.cta-section .cta-button:hover {
    background-color: var(--light-gray);
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: var(--white);
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.services-header h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.services-header .highlight-green {
    color: #28a745 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* New Alternating Layout */
.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    padding: 0 20px;
}

.service-row-left {
    flex-direction: row;
}

.service-row-right {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    max-width: 50%;
}

.service-card {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #28a745);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Individual service card colors */
.service-row:nth-child(1) .service-card-icon {
    background: linear-gradient(135deg, #4a90e2, #28a745);
}

.service-row:nth-child(2) .service-card-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.service-row:nth-child(3) .service-card-icon {
    background: linear-gradient(135deg, #6f42c1, #495057);
}

.service-row:nth-child(4) .service-card-icon {
    background: linear-gradient(135deg, #fd7e14, #e63946);
}

.service-row:nth-child(5) .service-card-icon {
    background: linear-gradient(135deg, #dc3545, #6f42c1);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-content {
    text-align: center;
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-card-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.service-text {
    position: relative;
}

.new-service-badge {
    position: absolute;
    top: -15px;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 20px;
}

.service-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.service-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.benefit-tag.highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.gradient-bg {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

@keyframes moveBackground {
    from {
        transform: translateX(0) translateY(0);
    }

    to {
        transform: translateX(-100px) translateY(-100px);
    }
}

/* Responsive adjustments for services detail */
@media (max-width: 768px) {
    .services-detail {
        padding: 60px 0;
    }

    .service-content {
        flex-direction: column;
        gap: 30px;
    }

    .service-icon {
        min-width: auto;
    }

    .services-header {
        margin-bottom: 40px;
        padding: 40px 0;
    }

    .service-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .service-content-left,
    .service-content-right {
        max-width: 100%;
        order: 2;
    }

    .service-card {
        max-width: 100%;
        order: 1;
        margin: 0;
        padding: 30px 20px;
    }

    .service-card-icon {
        width: 100px;
        height: 100px;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .service-text h3 {
        font-size: 1.3rem;
    }

    .service-benefits {
        justify-content: center;
    }

    .new-service-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
}

/* Tailwind-inspired utility classes for the new layout */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Override for services-detail section to maintain original styling */
.services-detail.py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f8f9fa;
}

/* Ensure the services content area has proper spacing */
.services-detail .max-w-7xl {
    padding-top: 40px;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.space-y-20>*+* {
    margin-top: 5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.lg\:flex-row {
    flex-direction: row;
}

.lg\:flex-row-reverse {
    flex-direction: row-reverse;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-16 {
    gap: 4rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.max-w-lg {
    max-width: 32rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.w-80 {
    width: 20rem;
}

.h-80 {
    height: 20rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.to-green-500 {
    --tw-gradient-to: #10b981;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-600 {
    color: #4b5563;
}

.text-green-600 {
    color: #059669;
}

.text-green-500 {
    color: #10b981;
}

.text-white {
    color: #ffffff;
}

.bg-gray-900 {
    background-color: #111827;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}

.leading-relaxed {
    line-height: 1.625;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.text-center {
    text-align: center;
}

.opacity-10 {
    opacity: 0.1;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.inline-block {
    display: inline-block;
}

.highlight-green {
    background: linear-gradient(90deg,
            var(--primary-green) 0%,
            #9ed350 25%,
            #54c4e0 75%,
            var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.1em;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:flex-row-reverse {
        flex-direction: row-reverse;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.scroll-to-top:hover {
    background: #7ab32f;
    transform: translateY(0px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive adjustments for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Contact Detail Page Styles */
.contact-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: var(--white);
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-header .highlight-green {
    color: #28a745 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info Side */
.contact-info {
    padding: 0;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), #386b09);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-details p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.contact-details small {
    font-size: 0.85rem;
    color: #888;
}

.why-gowise {
    padding: 0;
    margin-top: 40px;
}

.why-gowise h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.95rem;
    color: #666;
}

/* Contact Form Side */
.contact-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    padding: 30px 40px 0;
    text-align: left;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.contact-form {
    padding: 20px 40px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Remove margin-bottom from form-groups inside form-rows to avoid double spacing */
.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(140, 198, 63, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background-color: white;
    color: #374151;
    padding: 8px 12px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, var(--primary-green), #386b09);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-header {
        margin-bottom: 40px;
        padding: 40px 0;
    }

    .contact-content {
        padding: 40px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-header {
        padding: 25px 20px;
    }

    .contact-item {
        padding: 15px;
    }

    .why-gowise {
        padding: 20px;
    }
}

/* About Detail Page Styles */
.about-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: var(--white);
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.about-header h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-header .highlight-green {
    color: #28a745 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    padding: 60px 0 80px;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Mission and Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mission-icon,
.vision-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), #386b09);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-content h3,
.vision-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.mission-content p,
.vision-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #4a90e2, #28a745);
    padding: 60px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.values-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4a90e2, #28a745);
    color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .mission-vision-grid {
        gap: 40px;
    }

    .values-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-header {
        margin-bottom: 40px;
        padding: 40px 0;
    }

    .about-content {
        padding: 40px 0 60px;
    }

    .about-grid {
        gap: 30px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .values-section {
        padding: 50px 0;
        margin: 30px 0;
    }

    .values-section .container {
        padding: 0 20px;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .value-card {
        padding: 25px 15px;
    }

}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 680px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 25px;
    }
}

/* Partners Detail Section */
.partners-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: var(--white);
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.partners-header h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.partners-header .highlight-green {
    color: #28a745 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.partners-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    line-height: 1.6;
}

.partners-content {
    padding: 60px 0 80px;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.partners-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.partner-benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.partner-benefit:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.benefit-details p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 4px;
}

.benefit-details small {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.why-partner {
    margin-top: 50px;
    padding: 30px;
    background: rgba(140, 198, 63, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(140, 198, 63, 0.2);
}

.why-partner h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #374151;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.partners-form-container {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.partners-form-container .form-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    padding: 35px 30px;
    text-align: center;
}

.partners-form-container .form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.partners-form {
    padding: 40px 30px;
}

.partners-form .form-group {
    margin-bottom: 25px;
}

.partners-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

.partners-form input,
.partners-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: white;
    color: var(--dark-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.partners-form input::placeholder {
    color: #9ca3af;
}

.partners-form input:focus,
.partners-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.1);
}

.partners-form select option {
    background: white;
    color: var(--dark-blue);
}

.partners-form .submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-green), #9AE555);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.partners-form .submit-btn:hover {
    background: linear-gradient(135deg, #9AE555, var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 198, 63, 0.3);
}

.partners-form .form-disclaimer {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Partners */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partners-info {
        padding: 0;
    }

    .partners-header {
        margin-bottom: 40px;
        padding: 40px 0;
    }

    .partners-content {
        padding: 40px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partners-form {
        padding: 30px 20px;
    }

    .partners-form-container .form-header {
        padding: 25px 20px;
    }

    .partner-benefit {
        padding: 15px;
    }
}