.static-page-container {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
}

.static-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.static-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.static-page-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.static-page-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 1.8;
}

.static-page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.static-page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.static-page-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.static-page-content ul, .static-page-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.static-page-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.static-page-content a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.static-page-content a:hover {
    text-decoration: underline;
}

/* Contact Us Specific */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin: 0;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.btn-submit {
    background: #0056b3;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #004494;
}

@media (max-width: 768px) {
    .static-page-content {
        padding: 20px;
    }
    .static-page-header h1 {
        font-size: 2rem;
    }
}
