:root {
    --color-orange: #D86632;
    --color-orange-dark: #B54D1F;
    --color-green: #2D7B4F;
    --color-green-dark: #1E5437;
    --color-yellow: #FDD835;
    --color-light: #FFF8F0;
    --color-white: #ffffff;
    --color-text: #2C2C2C;
    --color-gray: #6B6B6B;
    --color-sky: #4FC3F7;
    --container-width: 1200px;
    --section-padding: 5rem 2rem;
    --font-hero: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-hero);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-hero);
    gap: 10px;
}

.btn-primary {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(216, 102, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 102, 50, 0.4);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 100px;
    transition: height 0.3s;
}

@media (min-width: 1200px) {
    .logo img {
        height: 140px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--color-orange);
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-green);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(45, 123, 79, 0.6), rgba(45, 123, 79, 0.6)), url('assets/image32.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-green);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-orange);
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--color-light);
    padding: 3rem 2rem;
    border-radius: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-orange);
}

.card h3 {
    color: var(--color-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.partner-placeholder {
    background: white;
    padding: 2.5rem 1rem;
    border-radius: 15px;
    border: 2px dashed #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    min-height: 150px;
}

.partner-placeholder:hover {
    border-color: var(--color-orange);
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 5rem 0 0;
    border-top: 5px solid var(--color-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-orange);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--color-orange);
}

.footer-col p {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.footer-logo img {
    height: 80px;
}

.footer-logo span {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    color: white;
}

.social-links a:hover {
    background: var(--color-orange);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-col.contact ul li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #999;
}

.footer-col.contact i {
    color: var(--color-orange);
    margin-top: 5px;
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        height: calc(100vh - 80px);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}