   @media (min-width: 992px) {
    .search-section {
        display: none;
    }
}
    :root {
    --primary: #0a3d3a;
    --accent: #14b8a6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-page: #f4f7f9;
    --bg-card: #ffffff;
    --border-soft: #e6edf3;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page */
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f7fafc 0%, #eef2f5 100%);
    color: var(--text-primary);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 880px;
    margin: 80px auto;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 56px 60px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.08),
        0 8px 20px rgba(15, 23, 42, 0.05);
}

header, nav, .navbar, .sticky-header {
    position: relative;
    z-index: 9999;
}


/* Header */
header {
    text-align: center;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
}

header p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Section */
section {
    margin-bottom: 48px;
    position: relative;
}

/* Section Titles */
section h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 14px;
    position: relative;
}

section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    border-radius: 2px;
    background: var(--accent);
}

/* Subheadings */
section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* Text */
p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

/* Lists */
ul {
    margin-top: 12px;
    margin-left: 18px;
}

ul li {
    margin-bottom: 10px;
    padding-left: 6px;
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Divider look */
section:not(:last-child)::after {
    content: "";
    display: block;
    margin-top: 48px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border-soft),
        transparent
    );
}



/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 40px 20px;
        padding: 36px 26px;
    }

    header h1 {
        font-size: 2.1rem;
    }
}

:root {
    --primary: #0a3d3a;
    --accent: #14b8a6;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border: #e5e7eb;
    --bg: #ffffff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page */
body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.75;
}

/* Layout */
.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 56px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.page-header p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 30px;
    background: #fff;
}

.card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 18px 0 10px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card ul {
    margin-left: 18px;
    margin-bottom: 10px;
}

.card ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Contact emphasis */
.card.contact {
    border-color: var(--accent);
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}



/* Responsive */
@media (max-width: 640px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
}
