/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image:  url('public/Vector-Smart-Object1-2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
}

/* Partners Section */
.partners {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
}

.partners h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    flex-wrap: wrap;
    padding: 0 1rem;
}

.partner-logo {
    height: clamp(30px, 8vw, 50px);
    object-fit: contain;
}

/* Contact Form */
.contact-section {
    padding: 8rem 1rem 4rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: clamp(1rem, 5vw, 2rem);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Buttons */
.cta-button,
.submit-button {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #2980b9;
}

/* Privacy Page */
.privacy-section {
    padding: 8rem 1rem 4rem;
    background-color: #f8f9fa;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: clamp(1rem, 5vw, 2rem);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-content h2 {
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .nav-links {
        margin-top: 0.5rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-container,
    .content-container {
        margin: 0 1rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Additional Responsive Improvements */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
    }

    .contact-container,
    .content-container {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
    }
}