* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: #f5f5f4;
    color: #292524;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.privacy-page {
    width: min(1120px, calc(100% - 32px));
    margin: 48px auto;
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 6vw, 68px);
    border-radius: 18px;
    background: linear-gradient(135deg, #243746, #2c3e50 65%, #7c4215);
    color: #fff;
    box-shadow: 0 18px 42px rgba(41, 37, 36, 0.14);
}

.privacy-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -145px;
    width: 300px;
    height: 300px;
    border: 48px solid rgba(251, 191, 36, 0.13);
    border-radius: 50%;
}

.hero-label {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
}

.privacy-hero__intro {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: #e7e5e4;
    font-size: 1.05rem;
    line-height: 1.7;
}

.privacy-meta {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.privacy-meta span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f4;
    font-size: 0.78rem;
    font-weight: 650;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 30px;
}

.privacy-summary {
    position: sticky;
    top: 24px;
    padding: 24px;
    border: 1px solid #e7e5e4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(41, 37, 36, 0.05);
}

.privacy-summary h2 {
    margin: 0 0 15px;
    color: #1f2933;
    font-size: 1rem;
}

.privacy-summary ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
}

.privacy-summary a {
    color: #57534e;
    font-size: 0.82rem;
    line-height: 1.35;
    text-decoration: none;
}

.privacy-summary a:hover,
.privacy-summary a:focus {
    color: #b45309;
    text-decoration: underline;
}

.privacy-content {
    display: grid;
    gap: 18px;
}

.privacy-section {
    scroll-margin-top: 24px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid #e7e5e4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(41, 37, 36, 0.04);
}

.privacy-section h2 {
    margin: 0 0 18px;
    color: #2c3e50;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
}

.privacy-section h3 {
    margin: 23px 0 9px;
    color: #92400e;
    font-size: 1rem;
}

.privacy-section p {
    margin: 0 0 13px;
    line-height: 1.75;
}

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding-left: 21px;
    line-height: 1.6;
}

.contact-card,
.important-note {
    padding: 20px 22px;
    border-radius: 10px;
}

.contact-card {
    border-left: 5px solid #b45309;
    background: #fff7ed;
}

.contact-card address {
    line-height: 1.7;
    font-style: normal;
}

.contact-card a {
    color: #92400e;
    font-weight: 700;
}

.important-note {
    margin-top: 20px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1e3a5f;
    line-height: 1.65;
}

.privacy-footer-note {
    padding: 24px 28px;
    border-radius: 12px;
    background: #292524;
    color: #e7e5e4;
    line-height: 1.65;
}

.privacy-footer-note strong { color: #fbbf24; }

@media (max-width: 860px) {
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-summary { position: static; }
    .privacy-summary ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .privacy-page {
        width: min(100% - 24px, 1120px);
        margin: 24px auto;
    }

    .privacy-hero,
    .privacy-section { padding: 24px; }
    .privacy-summary ol { grid-template-columns: 1fr; }
}
