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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
}

header h1 {
    font-size: 1.5rem;
}

.hero {
    position: relative;
    background-image: url('../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(102, 126, 234, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Honeypot - hide from humans */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

button {
    background: #667eea;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #5568d3;
}

#formStatus {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

#formStatus.success {
    background: #d4edda;
    color: #155724;
}

#formStatus.error {
    background: #f8d7da;
    color: #721c24;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #667eea;
    border-radius: 10px;
    z-index: 0;
}

.about-image img {
    position: relative;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 1;
}

.about-text {
    padding-top: 1rem;
}

.about-text h2 {
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.about-tagline {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-highlights li {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-secondary {
    background: #667eea;
    color: white;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-secondary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-image::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-highlights {
        justify-content: center;
    }

    .about-highlights li {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}
