/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2d7a3e;
    --accent-color: #ff6b35;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --content-width: 860px;
    --section-space: 2.5rem;
    --card-padding: 1.35rem;
    --card-radius: 0.5rem;
    --soft-border: 1px solid rgba(30, 58, 95, 0.12);
    --soft-shadow: 0 8px 18px rgba(30, 58, 95, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.starter-popup {
    position: absolute;
    top: auto;
    bottom: clamp(2rem, 5vh, 3.25rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(760px, calc(100vw - 2.5rem));
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.45);
    border-left: 6px solid var(--accent-color);
    border-radius: 0.5rem;
    box-shadow: 0 18px 40px rgba(30, 58, 95, 0.22);
}

.starter-popup.is-hidden {
    display: none;
}

.starter-popup-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background-color: rgba(30, 58, 95, 0.08);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.starter-popup-close:hover {
    background-color: rgba(255, 107, 53, 0.14);
}

.starter-popup-label {
    margin-bottom: 0.35rem;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.starter-popup h2 {
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    color: var(--primary-color);
    font-size: 1.7rem;
}

.starter-popup p {
    color: var(--text-dark);
}

.starter-popup-date {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1f5a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    flex: 1;
}

.nav-brand-name {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    color: white;
    text-decoration: none;
}

.nav-brand-name:hover {
    color: white;
}

.nav-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: white;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}

.nav-menu .cta-button {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.nav-menu .cta-button:hover {
    background-color: #1f5a2b;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* ==================== RESPONSIVE NAVIGATION ==================== */
@media (max-width: 768px) {
    .starter-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1.25rem;
        width: auto;
        transform: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .nav-menu .cta-button {
        margin: 0.5rem 1rem;
        display: inline-block;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .starter-popup {
        bottom: 0.25rem;
        padding: 1.25rem;
    }

    .starter-popup h2 {
        font-size: 1.35rem;
    }

    .starter-popup p {
        font-size: 0.95rem;
    }
}

/* ==================== HEADER/HERO SECTION ==================== */
.hero {
    display: block;
    position: relative;
    min-height: 60vh;
    height: auto;
    margin: 0;
    overflow: hidden;
    background-image: url("images/homepage/header.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    color: rgba(240, 240, 240, 0.9);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    color: rgba(227, 214, 214, 0.9);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 34rem;
    }

    .hero-overlay {
        justify-content: flex-start;
        padding: 3.5rem 1rem 0;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 5rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ==================== MAIN SECTIONS ==================== */
main {
    padding: 3rem 0 0;
}

.hero + main {
    clear: both;
    margin-top: 16px;
    padding-top: 0;
}

/* Welcome Section */
.welcome-section {
    position: relative;
    margin-top: 0rem;
    background-color: var(--light-bg);
    padding: 3rem 0 1.25rem;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-section {
    margin-bottom: 0;
}

.service-section > .container > h2 {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-section > .container > .intro-text {
    width: 100%;
}

.service-section section {
    margin-top: 4rem;
}

.service-section section:first-of-type {
    margin-top: 0;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.methodology .intro-text,
.terms-page .intro-text {
    margin-bottom: 2.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Quick Links */
.quick-links {
    background-color: var(--light-bg);
    padding: 1.25rem 0 4rem;
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-link-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    border-left: none;
    border: 2px solid rgba(36, 111, 183, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
    box-shadow: 0 8px 20px rgba(36, 111, 183, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.home-link-card:hover {
    transform: translateY(-4px);
    border-color: #246fb7;
    box-shadow: 0 14px 30px rgba(36, 111, 183, 0.24);
    background: #eef7ff;
}

.home-link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.home-link-card p {
    color: var(--text-dark);
    font-size: 0.98rem;
}

.click-hint {
    display: inline-block;
    margin-right: 0.75rem;
    color: #246fb7;
    font-weight: 700;
}

.home-link-card:hover .click-hint,
.home-link-card:hover .arrow {
    color: var(--primary-color);
}

.details-section {
    margin-top: 0rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-card {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(30, 58, 95, 0.12);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.12);
}

.detail-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.detail-card .icon,
.step .icon {
    display: inline-flex;
    margin-right: 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.detail-card p,
.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 1160px;
    box-shadow: 0 14px 30px rgba(30, 58, 95, 0.08);
}

.detail-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(45, 122, 62, 0.2);
}

.detail-section p {
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.detail-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.detail-section ul > li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.detail-section ul > li > ul {
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.detail-section ul ul li {
    margin-bottom: 0.35rem;
    color: var(--text-light);
    font-size: 0.98rem;
}

.process-section {
    padding-top: 3rem;
    margin-top: 0;
}

.values-section {
    padding-top: 3rem;
    margin-top: 0;
    margin-bottom: 3rem;
}

.values-section h2 {
    margin-bottom: 1.5rem;
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.link-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.arrow {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.25rem 0;
    text-align: center;
    margin-top: 0;
}

.cta-section .btn {
    margin-bottom: 0.25rem;
}

.cta-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ==================== SERVICE FAMILY PAGES ==================== */
.service-page {
    --service-content-width: 1040px;
    --service-reading-width: 850px;
    --service-grid-gap: 1.25rem;
}

.service-page .service-section,
.service-page .pricing-section,
.service-page .methodology {
    padding: var(--section-space) 0 0;
}

.service-page > section > .container {
    max-width: var(--service-content-width);
}

.service-page-intro {
    max-width: var(--service-reading-width);
    margin: 0 auto 1.5rem;
    text-align: center;
}

.service-page-intro h2 {
    margin-bottom: 0.75rem;
    font-size: 1.85rem;
}

.service-page .intro-text,
.service-page .content-section > .container > p,
.service-page .content-section > p,
.service-page .quick-links h2,
.service-page .cta-section > .container > p {
    max-width: var(--service-reading-width);
    margin-left: auto;
    margin-right: auto;
}

.service-page .intro-text {
    line-height: 1.75;
}

.service-page-intro .intro-text {
    margin-bottom: 0;
    text-align: center;
}

.service-page .content-section {
    padding: var(--section-space) 0 0;
}

.service-page .content-section h2 {
    max-width: var(--service-reading-width);
    margin: 0 auto 0.85rem;
    padding-bottom: 0.7rem;
    font-size: 1.65rem;
    text-align: center;
}

.service-page .content-section h2::after {
    content: "";
    display: block;
    width: 4rem;
    height: 1px;
    margin: 0.7rem auto 0;
    background-color: rgba(45, 122, 62, 0.28);
}

.service-page .content-section h2:not(:first-child) {
    margin-top: 2rem;
}

.service-page .content-section p {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.service-page .content-section > .container > ul {
    max-width: var(--service-reading-width);
    margin-left: auto;
    margin-right: auto;
}

.service-page .content-section p:last-child,
.service-page .feature-card p:last-child,
.service-page .pricing-card p:last-child,
.service-page .link-card p:last-child {
    margin-bottom: 0;
}

.service-page .feature-grid,
.service-page .pricing-grid,
.service-page .links-grid {
    gap: var(--service-grid-gap);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.service-page .feature-grid,
.service-page .links-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-page .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-page .feature-card,
.service-page .pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: var(--card-padding);
    border: var(--soft-border);
    border-radius: var(--card-radius);
    box-shadow: var(--soft-shadow);
    text-align: left;
}

.service-page .feature-card {
    align-items: flex-start;
}

.service-page .feature-card:hover,
.service-page .pricing-card:hover,
.service-page .link-card:hover {
    border-color: rgba(45, 122, 62, 0.35);
    box-shadow: 0 10px 22px rgba(30, 58, 95, 0.09);
}

.service-page .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 0.8rem;
    border-radius: 50%;
    background-color: rgba(45, 122, 62, 0.1);
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.service-page .feature-card h3,
.service-page .pricing-card h3 {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 1.12rem;
    line-height: 1.3;
}

.service-page .card-title-icon {
    display: inline-flex;
    flex: 0 0 1.2rem;
    width: 1.2rem;
    justify-content: center;
}

.service-page .feature-card p,
.service-page .pricing-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.service-page .compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-bottom: 1.2rem;
}

.service-page .pricing-grid {
    align-items: stretch;
}

.service-page .pricing-card {
    justify-content: flex-start;
    text-align: left;
}

.service-page .pricing-card ul {
    margin-top: auto;
    padding-top: 0.45rem;
}

.service-page .pricing-card li {
    line-height: 1.45;
}

.service-page .check-list {
    max-width: var(--service-reading-width);
    margin: 1rem auto 0;
    padding-left: 1.2rem;
}

.service-page .check-list li {
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    line-height: 1.65;
}

.service-page .quick-links {
    margin-top: var(--section-space);
    padding: var(--section-space) 0;
    background-color: var(--light-bg);
}

.service-page .quick-links h2 {
    margin-bottom: 1.4rem;
}

.service-page .link-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--card-padding);
    border: var(--soft-border);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--card-radius);
    box-shadow: none;
}

.service-page .link-card h3 {
    font-size: 1.1rem;
}

.service-page .link-card p {
    flex: 1;
    line-height: 1.55;
}

.service-page .content-section--accent {
    max-width: var(--service-reading-width);
    margin: var(--section-space) auto 0;
    padding: 1.6rem 1.8rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--card-radius);
    background-color: var(--light-bg);
}

.service-page .content-section--accent h2,
.service-page .content-section--accent p {
    max-width: none;
}

.service-page .method-card {
    max-width: var(--service-reading-width);
    margin-bottom: 1.15rem;
    padding: 1.45rem 1.55rem 1.45rem 4rem;
    border-radius: var(--card-radius);
    box-shadow: var(--soft-shadow);
}

.service-page .method-card h2 {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

.service-page .method-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

.service-page .method-card p,
.service-page .method-card ul {
    line-height: 1.65;
}

.service-page .method-card p {
    margin-bottom: 0.65rem;
}

.service-page .method-card li {
    margin-bottom: 0.35rem;
}

.service-page .step-number {
    left: 1.35rem;
    top: 1.45rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.85rem;
    box-shadow: none;
}

.service-page .cta-section {
    padding: 2.4rem 0;
}

.service-page .cta-section h2 {
    margin-bottom: 0.35rem;
}

.service-page .cta-section .btn + .btn {
    margin-left: 0.65rem;
}

.terms-page {
    padding: 2rem 0;
}

.method-card,
.terms-card {
    background: white;
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 auto 2rem;
    max-width: 800px;
    box-shadow: 0 14px 30px rgba(30, 58, 95, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.method-card {
    position: relative;
    padding-left: 4.5rem;
}

.terms-card {
    padding-left: 2.5rem;
}

.method-card h2,
.terms-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.55rem;
}

.method-card p,
.method-card ul,
.terms-card p {
    color: var(--text-dark);
    line-height: 1.85;
}

.method-card ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.method-card li {
    margin-bottom: 0.75rem;
}

/* ==================== ABOUT PAGE ==================== */
.about-section {
    padding: 2rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text h2 {
    font-size: 2rem;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.expertise-list, .why-list {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
    margin-left: 0;
}

.why-list li {
    position: relative;
    padding-left: 1.6rem;
}

.why-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-photo {
    margin: 0;
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    overflow: hidden;
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.info-card {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.info-card.highlight {
    background-color: #e8f4f1;
    border-left-color: var(--secondary-color);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-link-style {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ==================== METHODOLOGY PAGE ==================== */
.methodology {
    padding: 2rem 0;
}

.info-card,
.principle,
.feature-card,
.link-card,
.surveillance-card {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(30, 58, 95, 0.14);
}

.principles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.principles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.principle {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.principle h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* ==================== SURVEILLANCE PAGE ==================== */
.surveillance-section {
    padding: 2rem 0;
}

.surveillance-intro {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.surveillance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.surveillance-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
}

.surveillance-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.surveillance-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 2rem;
}

.surveillance-process h2 {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.surveillance-process .process-steps {
    display: contents;
}

.surveillance-process .step {
    background-color: var(--light-bg);
    border: none;
    border-radius: 0.5rem;
    text-align: left;
}

.surveillance-process .step h4 {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .surveillance-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .surveillance-process {
        grid-template-columns: 1fr;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(30, 58, 95, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.12);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.surveillance-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.surveillance-faq h2 {
    grid-column: 1 / -1;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ==================== PRICING PAGE ==================== */
.pricing-section {
    padding: 2rem 0;
}

.pricing-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 24px rgba(45, 122, 62, 0.12);
}

.pricing-card.highlight {
    border-color: var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: none;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.price-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.additional-costs {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.additional-costs h2 {
    margin-top: 0;
}

.cost-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.cost-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cost-detail {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.note {
    background-color: #e8f5e9;
    color: #1b5e20;
    padding: 0.75rem;
    border-radius: 0.25rem;
    border-left: 4px solid #4caf50;
    font-size: 0.95rem;
}

.pricing-info {
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-examples {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-examples h2 {
    margin-top: 0;
}

.example {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.example h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.transparency {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f5a2b 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.transparency-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.transparency-box p {
    color: white;
    margin-bottom: 1rem;
}

.transparency-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-box li {
    color: white;
    margin-bottom: 0.5rem;
}

.terms {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 2rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group.checkbox-group {
    display: grid;
    grid-template-columns: 1rem 1fr;
    column-gap: 0.75rem;
    align-items: start;
    margin-bottom: 1rem;
}

.form-group.checkbox-group input[type="checkbox"],
.form-group.checkbox-group .privacy-checkbox {
    appearance: auto;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    padding: 0;
    margin: 0.2rem 0 0;
    border-radius: 0;
    cursor: pointer;
}

.form-group.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.form-group.checkbox-group .field-error {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item a {
    font-weight: 600;
    color: var(--secondary-color);
}

.response-times,
.why-contact {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.response-times h3,
.why-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-times ul,
.why-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.response-times li,
.why-contact li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-faq {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-faq h2 {
    margin-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ==================== BLOG PAGE ==================== */
.blog-section {
    padding: 2rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.post-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.post-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.post-header h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-header h2 a:hover {
    color: var(--secondary-color);
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.post-excerpt {
    padding: 1.5rem;
    flex-grow: 1;
}

.post-excerpt p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-content {
    padding: 1.5rem;
    background-color: var(--light-bg);
    font-size: 0.95rem;
}

.post-content.is-collapsed {
    display: none;
}

.post-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content h3:first-child {
    margin-top: 0;
}

.post-content figure {
    margin: 1.5rem 0;
}

.post-content figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.post-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.sensitive-image {
    margin: 1.5rem 0;
}

.sensitive-image summary {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 0.5rem;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}

.sensitive-image summary:hover,
.sensitive-image summary:focus-visible {
    background: #fff4ef;
    outline: 3px solid rgba(255, 107, 53, 0.35);
    outline-offset: 2px;
}

.sensitive-image[open] summary {
    margin-bottom: 1rem;
}

.sensitive-image__hide-text,
.sensitive-image[open] .sensitive-image__show-text {
    display: none;
}

.sensitive-image[open] .sensitive-image__hide-text {
    display: inline;
}

.sensitive-image__content {
    max-width: 100%;
}

.image-placeholder {
    margin: 1.5rem 0;
}

.image-placeholder-visual {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed rgba(30, 58, 95, 0.28);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #edf5ef 100%);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.blog-post .btn {
    margin: 1rem;
    align-self: flex-start;
}

.blog-article {
    max-width: 860px;
    margin: 0 auto 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-article .post-content {
    line-height: 1.75;
}

.source-block {
    margin-top: 2rem;
    padding: 1.25rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
}

.source-block p:last-child {
    margin-bottom: 0;
}

.blog-back-link {
    max-width: 860px;
    margin: 0 auto;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ==================== RAT INFORMATION PAGE ==================== */
.rat-info-page {
    background-color: var(--white);
    padding: 4rem 0;
}

.rat-info-intro,
.rat-fact-media {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.rat-info-intro {
    margin-bottom: 2.5rem;
}

.rat-fact-section {
    padding: 2.25rem 0;
    border-top: 1px solid var(--border-color);
}

.rat-fact-section h2 {
    margin-bottom: 0.75rem;
}

.rat-fact-section p,
.rat-fact-section li {
    font-size: 1.05rem;
}

.rat-info-image {
    margin: 0;
}

.rat-info-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 28px rgba(30, 58, 95, 0.16);
}

.rat-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .rat-info-intro,
    .rat-fact-media {
        grid-template-columns: 1fr;
    }

    .rat-info-page {
        padding: 2.5rem 0;
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    display: none;
    padding: 12px 15px;
    border: 0;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-to-top-btn.is-visible {
    display: block;
}

.scroll-to-top-btn:hover {
    background-color: #1f5a2b;
    transform: scale(1.1);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1040px;
    margin: 0 auto;
    padding: 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--secondary-color);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 28px rgba(30, 58, 95, 0.18);
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cookie-banner-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.65rem;
}

.cookie-banner .btn {
    cursor: pointer;
}

.cookie-banner .btn:focus-visible {
    outline: 3px solid rgba(45, 122, 62, 0.3);
    outline-offset: 2px;
}

/* ==================== FOOTER ==================== */
footer.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 1.5rem 0 0.6rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 0.9rem;
    align-items: start;
}

.footer-section h4 {
    color: white;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.35;
}

.footer-section a {
    color: #ffd700;
    text-decoration: none;
}

.footer-contact-value {
    color: #ffd700;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-section ul li a {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.55rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .service-page .feature-grid,
    .service-page .pricing-grid,
    .service-page .links-grid,
    .service-page .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .links-grid,
    .principles-grid,
    .surveillance-content,
    .pricing-grid,
    .info-grid,
    .pricing-examples,
    .faq-grid,
    .contact-faq,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlight {
        transform: scale(1);
    }

    .process-steps {
        gap: 1rem;
    }

    .step {
        padding: 1rem;
    }

    .service-page .service-section,
    .service-page .pricing-section,
    .service-page .methodology {
        padding-top: 2rem;
    }

    .service-page .content-section,
    .service-page .quick-links {
        padding-top: 2.25rem;
    }

    .service-page .quick-links {
        margin-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .service-page .feature-grid,
    .service-page .pricing-grid,
    .service-page .links-grid {
        gap: 1rem;
        margin-top: 1.15rem;
        grid-template-columns: 1fr;
    }

    .service-page-intro {
        margin-bottom: 1.15rem;
    }

    .service-page-intro h2 {
        font-size: 1.5rem;
    }

    .service-page .feature-card,
    .service-page .pricing-card,
    .service-page .link-card {
        padding: 1.15rem;
    }

    .service-page .method-card {
        padding: 1.25rem 1.25rem 1.25rem 3.65rem;
    }

    .service-page .content-section--accent {
        margin-top: 2.25rem;
        padding: 1.35rem 1.25rem;
    }

    .service-page .cta-section .btn + .btn {
        margin-left: 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    footer.footer {
        padding-top: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .footer-section h4 {
        margin-bottom: 0.3rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        justify-content: stretch;
    }

    .cookie-banner-actions .btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .service-page .content-section h2 {
        font-size: 1.25rem;
    }

    .service-page-intro h2 {
        font-size: 1.25rem;
    }

    .service-page .method-card {
        padding: 1.15rem;
    }

    .service-page .step-number {
        position: static;
        margin-bottom: 0.65rem;
    }

    .service-page .cta-section .btn {
        width: min(100%, 18rem);
        margin: 0.35rem auto;
    }

    .nav-brand-name {
        font-size: 1.3rem;
    }

    .nav-subtitle {
        display: none;
    }

    .hero {
        min-height: 360px;
        height: auto;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
