/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f3ef;
    color: #3a2f2a;
    line-height: 1.6;
}

/* NAVIGATION */
.navbar {
    background-color: #e8dfd6;
    padding: 15px 0;
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
    margin: 0 20px;
}

.navbar a {
    text-decoration: none;
    color: #3a2f2a;
    font-weight: bold;
    font-size: 1.1rem;
}

.navbar a.active,
.navbar a:hover {
    color: #a33a2c;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #f2e9e4;
}

.hero-logo {
    width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #a33a2c;
}

.hero-subtext {
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #a33a2c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #8c2f23;
}

/* ABOUT SECTION */
.about, .services, .why-us, .contact-cta {
    padding: 60px 20px;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICES */
.service-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card {
    background-color: #fff;
    padding: 25px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #a33a2c;
    font-weight: bold;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* WHY US */
.why-us ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.why-us li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* CONTACT CTA */
.direct-email a {
    color: #a33a2c;
    font-weight: bold;
}
/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #f2e9e4;
}

.page-header h1 {
    color: #a33a2c;
    margin-bottom: 10px;
}

/* SERVICE DETAIL SECTIONS */
.service-detail {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-detail h2 {
    color: #a33a2c;
}

.service-detail ul {
    margin-top: 15px;
    padding-left: 20px;
}
/* Small hero for subpages */
.small-hero {
    background-color: #f4f1ec;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.small-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #3a2f2a;
}

.small-hero p {
    font-size: 1.1rem;
    color: #6b5f58;
}

/* Content section layout */
.content-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    line-height: 1.7;
}

.content-section h2 {
    margin-top: 40px;
    color: #3a2f2a;
    font-size: 1.6rem;
}

.content-section p {
    color: #4a403c;
    margin-top: 10px;
}

/* Contact box */
.contact-box {
    background-color: #f7f5f2;
    padding: 20px;
    border-left: 4px solid #a0522d;
    margin: 30px 0;
    font-size: 1.1rem;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form label {
    font-weight: bold;
    color: #3a2f2a;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #a0522d;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background-color: #8c4527;
}
/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 20px;
    background: #f4f1ec;
    border-bottom: 1px solid #ddd;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-card {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-info, .contact-form {
    flex: 1 1 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-form button {
    padding: 12px;
    background: #8b3a2b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #6f2f22;
}