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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1024px) {
    .container {
        display: flex;
        flex-direction: column;
    }
}

/* Left Side - Content */
.content-section {
    color: #2d3748;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .content-section {
        display: contents;
    }
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.95;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 60px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Right Side - Form */
.form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.banner-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
}

.form-container h2 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: #718096;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #cbd5e0;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    color: #a0aec0;
    font-size: 0.85rem;
    margin-top: 16px;
}

/* Contact Us Section */
.contact-us {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.contact-title {
    text-align: center;
    color: #2d3748;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: block;
    text-align: center;
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #5568d3;
    border-color: #667eea;
}

/* Success Message */
.success-message {
    text-align: center;
    color: #2d3748;
    animation: slideIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 217, 100, 0.2);
    border: 3px solid #4cd964;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    color: #4cd964;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-section {
        padding: 20px;
        text-align: center;
    }

    .header {
        order: 1;
    }

    .form-section {
        order: 2;
    }

    .features {
        order: 3;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .tagline {
        margin-bottom: 40px;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .form-container h2 {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 18px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-container h2 {
        font-size: 1.4rem;
    }
}
