:root {
    --primary-color: #a548bd;
    --secondary-color: #dc00ff;
    --text-dark: #333;
    --text-light: #666;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: white;
}

header {
    padding: 1rem;
    text-align: center;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 1000;
}

.logo {
    height: 60px;
    width: auto;
    padding: 0.5rem;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 30vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Form Styles */
.contact-main {
    min-height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(
        rgba(165, 72, 189, 0.05),
        rgba(220, 0, 255, 0.05)
    );
}

.contact-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.hidden-field {
    display: none;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 0, 255, 0.2);
}

.g-recaptcha {
    margin: 1rem 0;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reverse {
    flex-direction: row-reverse;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.text-container {
    flex: 1;
    padding: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
    margin-bottom: 2rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.seo-section {
    background: linear-gradient(
        rgba(165, 72, 189, 0.05),
        rgba(220, 0, 255, 0.05)
    );
}

.more-info-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.more-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 0, 255, 0.2);
}

footer {
    background-color: white;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

footer p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .seo-section .section-content {
        flex-direction: column-reverse;
    }
    
    .text-container {
        padding: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .hero-image {
        min-height: 40vh;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }

    .contact-container h1 {
        font-size: 1.8rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
    }

    .section {
        padding: 5rem 1rem 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }

    .hero-image {
        min-height: 30vh;
    }
}