:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #3a7bd5;
    --light-blue: #e8f0fe;
    --dark-grey: #4a5568;
    --medium-grey: #718096;
    --light-grey: #f7fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-grey);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.contact-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
    padding: 80px 0 40px;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-blue);
}

.contact-form-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.form-control {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 0.2rem rgba(58, 123, 213, 0.25);
}

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: var(--medium-grey);
    cursor: not-allowed;
    transform: none;
}

.thank-you-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.contact-info-card {
    background-color: var(--light-grey);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

footer {
    background-color: var(--dark-grey);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.logo {
    height: 40px;
}

/* Turnstile widget styling */
.cf-turnstile {
    margin: 20px 0;
}
