@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #555555; 
    background-color:#fafafa;
    display:flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    color: #111111;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

header p {
    color: #888888;
    font-size: 0.9em;
    margin-bottom: 15px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #111111;
}
    nav a.active {
    color: #111111;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px; 

}

main {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}

section h2 {
    color: #111111;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3.5em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #666666;
}

.hero-image {
    flex: 1;
    text-align: center; 
}

.hero-image img {
    max-width: 75%; 
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    
    /* This creates the smooth 'transaction' / transition */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease; 
}


.hero-image img:hover {
    transform: translateY(-10px) scale(1.03); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); /
}


.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #111111;
    color: #ffffff;
    border: 2px solid #111111;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.btn-secondary {
    background-color: transparent;
    color: #111111;
    border: 2px solid #dddddd;
    margin-left: 10px;
}

.btn-secondary:hover {
    border-color: #111111;
}


.card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Very subtle, clean shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card h3 {
    color: #111111;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.card p {
    color: #666666;
}


.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #111; }
.form-group input, .form-group textarea {
    width: 100%; padding: 15px; background-color: #f9f9f9;
    border: 1px solid #dddddd; border-radius: 8px; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #111111;
}
.submit-btn {
    background-color: #111111; color: #ffffff; border: none;
    padding: 15px 30px; border-radius: 8px; font-weight: 600; cursor: pointer; width: 100%;
}
.form-status { margin-top: 15px; color: #111; font-weight: bold; display: none; }


footer {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
}

@media (max-width: 768px) {
    /* Fix the navigation for small screens */
    nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 12px; 
        margin-top: 10px;
    }
    nav a {
        font-size: 0.85em; /* Slightly smaller text for mobile */
    }
    
    /* Fix the hero layout for small screens */
    .hero { 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-image { 
        text-align: center; 
        margin-top: 20px; 
    }
    .btn-secondary { 
        margin-left: 0; 
        margin-top: 10px; 
    }
} 