/* Call Button Styles */
        .contact-page-call-button-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .contact-page-call-button {
            background-color: #AFD4E9;
            color: #333;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .contact-page-call-button:hover {
            background-color: #8bc0dd;
        }
        
        /* Modal Styles */
        .contact-page-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .contact-page-modal-content {
            position: relative;
            background-color: #fff;
            margin: 10% auto;
            padding: 30px;
            width: 400px;
            max-width: 90%;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        
        .contact-page-close {
            position: absolute;
            right: 20px;
            top: 10px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .contact-page-close:hover {
            color: #333;
        }
        
        .contact-page-modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .contact-page-form-group {
            margin-bottom: 15px;
            text-align: left;
        }
        
        .contact-page-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            font-size: 24px;
            color: #555;
        }
        
        .contact-page-form-group input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 20px;
            box-sizing: border-box;
        }

        .contact-page-form-group textarea {
            width: 100%;
            padding: 10px 15px;
            min-height: 80px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 20px;
            box-sizing: border-box;
            resize: none;
        }
        
        .contact-page-submit-button {
            background-color: #AFD4E9;
            color: #333;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            width: auto;
            margin: 20px auto;
            display: block;
        }
        
        .contact-page-submit-button:hover {
            background-color: #8bc0dd;
        }
        
        .contact-page-consent {
            font-size: 12px;
            color: #888;
            margin-top: 10px;
            line-height: 1.4;
        }
        
        /* Success Modal Styles */
.contact-page-success-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 40px 30px;
    width: 400px;
    max-width: 90%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-page-success-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-page-success-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-page-success-button {
    background-color: #AFD4E9;
    color: #333;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page-success-button:hover {
    background-color: #8bc0dd;
}