:root {
    --primary-color: #d9534f;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --heading-color: #1a1a1a;
    --link-color: #007bff;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
}

.page-container {
    max-width: 960px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: black;
    display: flex;
    align-items: center;
}

.section-heading i {
    margin-right: 15px;
    font-size: 2rem;
    color: black;
}

p, li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #1a1a1a;
}

.contact-info {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.contact-info p {
    margin: 0;
    color: #333;
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
    .page-header h1 {
        font-size: 2.2rem; /* Reduced font size for mobile header */
    }

    .page-container {
        padding: 15px;
        margin: 15px auto;
    }

    .section-heading {
        font-size: 1.3rem; /* Reduced font size for subheadings */
    }

    .section-heading i {
        font-size: 1.5rem;
    }
}