﻿:root {
    --primary-blue: #1a5276;
    --secondary-blue: #21618c;
    --orange: #e67e22;
    --bg-light: #f4f6f8;
    --border: #e1e5ea;
    --text-dark: #2c3e50;
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== MAIN ===== */
.main {
    padding: 24px 0 50px;
}


/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    color: #666;
}

    .breadcrumb a {
        color: var(--secondary-blue);
        text-decoration: none;
    }

/* ===== CONTENT LAYOUT ===== */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px; /* WIDTH INCREASED */
    gap: 32px;
}


/* ===== PAGE CONTENT ===== */
.page-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.intro {
    margin-bottom: 18px;
}

/* ===== BULLET LIST ===== */
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
}

    .custom-bullet-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 15px;
    }

        .custom-bullet-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            background: #000;
            border-radius: 50%;
        }

        .custom-bullet-list li p {
            margin-top: 5px;
        }

    .custom-bullet-list.simple li {
        margin-bottom: 8px;
    }


/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Quick Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .contact-method:hover {
        background: #f3f4f6;
        transform: translateX(4px);
    }

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .method-icon.bg-blue {
        background: #1e3a5f;
    }

    .method-icon.bg-red {
        background: #dc2626;
    }

    .method-icon.bg-green {
        background: #10b981;
    }

.method-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.method-value {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
}

/* ===================== */
/* ===== WHY SECTION ==== */
/* ===================== */

.why-section {
    background: var(--bg-light);
    padding: 50px 0;
    margin-top: 50px;
}

.why-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.why-card {
    background: #fff;
    border-radius: 6px;
    padding: 22px;
    border: 1px solid var(--border);
}

.why-card-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 13px;
    color: #555;
}

/* ===================== */
/* ===== RESPONSIVE ==== */
/* ===================== */

@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: 2;
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 20px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .contact-method {
        padding: 12px;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-value {
        font-size: 13px;
    }
}

.toc {
    text-align: justify;
}
