.contact-page {
    padding: 2rem 0;
    background-color: #f8fafc;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.contact-info {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
}

.info-content {
    max-width: 400px;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.icon {
    width: 36px;
    height: 36px;
    color: white;
}

.method-details h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: white;
}

.method-details a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.15s ease;
}

.method-details a:hover {
    color: white;
    text-decoration: underline;
}

.contact-form {
    padding: 3rem 2rem;
}

.form-wrapper {
    max-width: 400px;
}

.contact-form h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.35rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #a0aec0;
}

.form-input:focus {
    outline: none;
    border-color: #ff5252;
    box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.2);
}

.submit-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #ff5252;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #ff6b6b;
    transform: translateY(-1px);
}

.alert-box {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    color: #c53030;
}

.alert-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert-box li {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info, .contact-form {
        padding: 2.5rem 2rem;
    }

    .info-content, .form-wrapper {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .form-intro {
        font-size: 1rem;
    }
}