
    :root {
        --primary-blue: #2563eb;
        --secondary-blue: #1e40af;
        --primary-green: #10b981;
        --secondary-green: #059669;
        --light-blue: #eff6ff;
        --light-green: #ecfdf5;
        --white: #ffffff;
        --gray-50: #f9fafb;
        --gray-100: #f3f4f6;
        --gray-800: #1f2937;
        --gray-900: #111827;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        background-color: var(--white);
        color: var(--gray-800);
        overflow-x: hidden;
        line-height: 1.6;
    }
    
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.95));
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        z-index: -1;
    }
    
    .hero-content {
        max-width: 1200px;
        padding: 0 20px;
        text-align: center;
        color: var(--white);
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 4.5rem;
        font-weight: 800;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        background: linear-gradient(to right, var(--white), var(--light-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .scroll-down {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
        cursor: pointer;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-30px) translateX(-50%);
        }
        60% {
            transform: translateY(-15px) translateX(-50%);
        }
    }
    
    .scroll-down svg {
        width: 40px;
        height: 40px;
        fill: var(--white);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    .about-section {
        padding: 120px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: var(--gray-50);
        position: relative;
        overflow: hidden;
    }
    
    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
        opacity: 0.05;
        border-radius: 50%;
        transform: translate(150px, -150px);
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
    }
    
    .about-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .about-image:hover img {
        transform: scale(1.05);
    }
    
    .about-content {
        padding: 30px;
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: var(--gray-900);
        position: relative;
        padding-bottom: 15px;
        font-weight: 700;
    }
    
    .about-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
        border-radius: 2px;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
        margin-top: 40px;
        margin-bottom: 20px;
        color: var(--gray-900);
        font-weight: 600;
    }
    
    .about-content p {
        margin-bottom: 20px;
        line-height: 1.8;
        color: var(--gray-800);
    }
    
    .about-content ul {
        list-style-type: none;
        margin-bottom: 30px;
    }
    
    .about-content ul li {
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
        color: var(--gray-800);
    }
    
    .about-content ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--primary-blue);
        font-weight: bold;
    }
    
    .values-section {
        background: linear-gradient(135deg, var(--light-blue), var(--light-green));
        padding: 120px 20px;
        position: relative;
        overflow: hidden;
    }
    
    .values-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .values-header {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .values-header h2 {
        font-size: 2.5rem;
        color: var(--gray-900);
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .values-header p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--gray-800);
        font-size: 1.1rem;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .value-card {
        background-color: var(--white);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    }
    
    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
        border-radius: 20px;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }
    
    .value-card:hover .value-icon {
        transform: rotate(0deg);
    }
    
    .value-icon svg {
        width: 40px;
        height: 40px;
        fill: var(--white);
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }
    
    .value-card:hover .value-icon svg {
        transform: rotate(0deg);
    }
    
    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--gray-900);
        font-weight: 600;
    }
    
    .value-card p {
        color: var(--gray-800);
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 120px 20px;
        text-align: center;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
        color: var(--gray-900);
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .cta-section p {
        margin-bottom: 40px;
        color: var(--gray-800);
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .cta-button {
        display: inline-block;
        padding: 18px 45px;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
        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: 0.5s;
    }
    
    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
    }
    
    .cta-button:hover::before {
        left: 100%;
    }
    
    @media (max-width: 992px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .about-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .about-image {
            max-width: 600px;
            margin: 0 auto;
            transform: none;
        }
        
        .about-image:hover {
            transform: none;
        }
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .about-content h2, 
        .values-header h2,
        .cta-section h2 {
            font-size: 2rem;
        }
        
        .about-section,
        .values-section,
        .cta-section {
            padding: 80px 20px;
        }
        
        .value-card {
            padding: 30px 20px;
        }
    }
