:root {
    --fazea-navy: #071120;
    --fazea-navy-soft: #14213d;
    --fazea-gold: #b88a35;
    --fazea-gold-dark: #8f6723;
    --fazea-ivory: #fbfaf7;
    --fazea-surface: #ffffff;
    --fazea-text: #263247;
    --fazea-muted: #626a76;
    --fazea-border: rgba(7, 17, 32, 0.10);
    --fazea-shadow: 0 16px 42px rgba(7, 17, 32, 0.07);
}

.cgv-page {
    width: 100%;
    min-height: 100vh;
    background: #fbfaf7;
    color: #071120;
}

.cgv-page svg {
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cgv-content {
    padding: 44px 0 74px;
}

.cgv-container {
    width: min(100%, 1620px);
    margin: 0 auto;
    padding-left: clamp(42px, 5.5vw, 110px);
    padding-right: clamp(42px, 5.5vw, 110px);
}

.cgv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: #6e7480;
    font-size: 14px;
    font-weight: 800;
}

.cgv-breadcrumb a {
    color: #6e7480;
    text-decoration: none;
}

.cgv-breadcrumb span {
    color: #94a3b8;
}

.cgv-breadcrumb strong {
    color: #6e7480;
}

.cgv-header {
    max-width: 1120px;
}

.cgv-header h1 {
    margin: 0;
    color: #07182b;
    font-size: clamp(38px, 3.4vw, 56px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.cgv-header p {
    max-width: 1080px;
    margin-top: 22px;
    color: #59616c;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 750;
}

.cgv-separator {
    width: 100%;
    height: 1px;
    margin: 46px 0 0;
    background: rgba(7, 17, 32, 0.10);
}

.cgv-legal {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding-top: 24px;
}

.cgv-section {
    padding: 30px 0 32px;
    border-bottom: 1px solid rgba(7, 17, 32, 0.10);
}

.cgv-section h2 {
    margin: 0 0 18px;
    color: #071120;
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.cgv-section p {
    margin: 0;
    color: #07182b;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 650;
}

.cgv-section p + p {
    margin-top: 6px;
}

.cgv-download {
    display: flex;
    justify-content: center;
    padding: 40px 0 34px;
}

.cgv-download-btn {
    min-height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid #b88a35;
    border-radius: 8px;
    background: #ffffff;
    color: #b88a35;
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: 0.2s ease;
}

.cgv-download-btn:hover {
    background: #f8f6f0;
    transform: translateY(-2px);
}

.cgv-download-btn svg {
    width: 20px;
    height: 20px;
}

.cgv-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(7, 17, 32, 0.10);
    border-radius: 12px;
    background: linear-gradient(135deg, #fbfaf7 0%, #f3f1eb 100%);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(7, 17, 32, 0.04);
}

.cgv-benefits article {
    min-height: 170px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b88a35;
    text-align: center;
}

.cgv-benefits article:not(:last-child) {
    border-right: 1px solid rgba(7, 17, 32, 0.10);
}

.cgv-benefits svg {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
}

.cgv-benefits h3 {
    margin: 0;
    color: #071120;
    font-size: 18px;
    font-weight: 950;
}

.cgv-benefits p {
    margin-top: 10px;
    color: #59616c;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 650;
}

@media (max-width: 1180px) {
    .cgv-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cgv-benefits article:nth-child(2) {
        border-right: 0;
    }

    .cgv-benefits article:nth-child(1),
    .cgv-benefits article:nth-child(2) {
        border-bottom: 1px solid rgba(7, 17, 32, 0.10);
    }
}

@media (max-width: 900px) {
    .cgv-container {
        padding-left: 6%;
        padding-right: 6%;
    }

    .cgv-content {
        padding-top: 34px;
    }

    .cgv-header p {
        font-size: 16px;
    }
}

@media (max-width: 620px) {
    .cgv-benefits {
        grid-template-columns: 1fr;
    }

    .cgv-benefits article {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(7, 17, 32, 0.10);
    }

    .cgv-benefits article:last-child {
        border-bottom: 0;
    }

    .cgv-download-btn {
        width: 100%;
    }
}