:root {
    --primary-color: #146F39;
    --primary-light: #1a8547;
    --text-color: #0A3624;
    --background-color: #FFF9EE;
    --white: #ffffff;
    --pill-bg: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background-image: url('images/LinearGradient.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    z-index: 1;
}

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

.content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo {
    max-width: 100px;
    height: auto;
}

.logo-text {
    max-width: 300px;
    height: auto;
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 120px;
    line-height: 130px;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    color: #1A6048;
    margin-bottom: 2rem;
}

.partner-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 39px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #4c4c4c;
    max-width: 800px;
    /* margin: 0 auto; */
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 1rem auto;
}

.feature-pill {
    padding: 0.75rem 1.5rem;
    background-color: var(--pill-bg);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #46B171;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(20, 111, 57, 0.3);
}

.contact-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 111, 57, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .content {
        gap: 1.5rem;
    }
    
    .features {
        gap: 0.75rem;
    }
    
    .feature-pill {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.25rem;
    }
    
    .logo-text {
        max-width: 220px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .features {
        gap: 0.5rem;
    }
    
    .feature-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .contact-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }
} 