/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    /* Using the Unsplash image provided */
    background-image: url('https://images.unsplash.com/photo-1617228069096-4638a7ffc906?q=80&w=1742&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 60vh; /* Adjust height based on preference */
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 40px;
}

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

.hero .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Info Section (Beige Background) */
.info-section {
    background-color: #FFFBF5; /* Matches the beige tone */
    padding: 100px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.info-left h2 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
}

.info-right p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Logos Section */
.recommended-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    /* Placeholder styling since we don't have images */
    opacity: 0.9;
}

.partner-logo small {
    font-size: 0.6em;
    font-weight: 400;
    text-transform: uppercase;
}

/* Contact Section (Dark Grey) */
.contact-section {
    background-color: #3C3C3C;
    color: white;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-left h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-details p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

/* Form Styling */
.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 1px solid white;
}

#message {
    background-color: rgba(255, 255, 255, 0.05); /* Slight fill for textarea like image */
    padding: 10px;
    border: none;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
}

button[type="submit"] {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}

button[type="submit"]:hover {
    text-decoration: underline;
}

/* Footer (Black) */
.footer {
    background-color: #000;
    color: white;
    padding: 60px 0;
}

.footer .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer .logo-text {
    font-size: 1.2rem;
    margin-left: 8px;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logo-grid {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        height: 40vh;
    }
}