/* OptionPro Page Styles */
.pro-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 4rem;
}

/* Hero Section */
.pro-hero {
    background-color: #0a1a44;
    color: white;
    padding: 3rem 1rem 2rem 1rem;
    text-align: left;
    position: relative;
}

.pro-hero .container {
    max-width: 1000px;
    margin: 0 auto;
}

.pro-hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.pro-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 900px;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

/* Registration Section */
.pro-registration {
    padding: 3rem 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pro-registration-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.pro-registration-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.pro-registration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro-registration-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1a44;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.pro-registration-header p {
    font-size: 0.9rem;
    color: #666;
}

/* Form Styles */
.pro-form {
    background: #fff;
    padding: 0;
    margin-top: 1.5rem;
}

.pro-form-group {
    margin-bottom: 1.2rem;
}

.pro-form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.pro-form-input:focus {
    outline: none;
    border-color: #0a1a44;
    box-shadow: 0 0 0 3px rgba(10, 26, 68, 0.1);
}

.pro-form-input::placeholder {
    color: #999;
}

.pro-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.pro-form-actions {
    text-align: right;
    margin-top: 1rem;
}

.pro-form-submit {
    display: inline-block;
    background-color: #0a1a44;
    color: white;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.pro-form-submit:hover {
    background-color: #152c60;
    transform: translateY(-2px);
}

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

/* GOOGLE FORMS placeholder text */
.pro-google-forms-placeholder {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-hero {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .pro-hero h1 {
        font-size: 1.3rem;
    }
    
    .pro-hero p {
        font-size: 0.9rem;
    }
    
    .pro-registration {
        padding: 2rem 1rem;
    }
    
    .pro-registration-header h2 {
        font-size: 1.1rem;
    }
    
    .pro-form-actions {
        text-align: center;
    }
    
    .pro-form-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pro-hero h1 {
        font-size: 1.15rem;
    }
    
    .pro-form-input {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
}
