/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FEF9F3;
    --secondary-color: #122A34;
    --accent-color: #FF7A24;
    --light-bg: #F5F0E8;
    --dark-text: #122A34;
    --light-text: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* ===== Hero Section ===== */
.hero {
    padding: 60px 0;
}

.hero .container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.hero-content {
    flex: 1;
    background-color: rgba(255,255,255,0.95);
    padding: 32px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--dark-text);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #E66A1A;
    transform: translateY(-2px);
}

/* ===== Introduction Section ===== */
.introduction-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.introduction-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.introduction-section p {
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
}

/* ===== Services Preview Section ===== */
.services-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--dark-text);
    line-height: 1.8;
}

/* Blog post card with image */
.post-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.post-image {
    flex: 0 0 220px;
}

.post-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.post-content.service-card {
    text-align: left;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .post-card {
        flex-direction: column;
    }

    .post-image {
        flex: 1 1 auto;
    }
}
/* ===== Pricing Table ===== */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricing-table th,
.pricing-table td {
    padding: 12px 16px;
    border: 1px solid #e9e6e1;
    vertical-align: top;
}

.pricing-table thead th {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: left;
    font-weight: 600;
}

.pricing-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

/* ===== About Preview Section ===== */
.about-preview {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
}

.about-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-preview p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.link-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link-button:hover {
    background-color: #E66A1A;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-image img {
        height: 260px;
    }

    .nav-links {
        gap: 1rem;
    }

    .services-preview h2,
    .about-preview h2 {
        font-size: 2rem;
    }

    .footer .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
