@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
    --blue-950: #03164a;
    --blue-900: #0a2560;
    --blue-700: #0e4abf;
    --blue-600: #1258e0;
    --blue-500: #2970ff;
    --blue-400: #5d93ff;
    --blue-100: #dceaff;
    --blue-50: #f0f6ff;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(9, 37, 96, 0.06);
    --shadow-md: 0 8px 32px rgba(9, 37, 96, 0.10);
    --shadow-lg: 0 20px 60px rgba(9, 37, 96, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 1.0625rem;
    --font-medium: 1.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Pretendard, sans-serif;
    color: var(--gray-700);
    font-size: var(--font-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

input,
textarea,
button,
select {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

h3 {
    font-size: var(--font-medium);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--blue-50);
    color: var(--blue-600);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--blue-600);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--blue-600);
    border: 1px solid var(--blue-600);
}

.btn-outline:hover {
    background-color: var(--blue-50);
}

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

.btn-primary:hover {
    background-color: var(--blue-500);
}

.btn-dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--gray-700);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo a {
    font-size: 1.5rem;
    color: var(--blue-700);
}

.logo a span {
    color: var(--blue-500);
}

.gnb ul {
    display: flex;
    gap: 2rem;
}

.gnb a {
    font-weight: 500;
    color: var(--gray-900);
}

.gnb a:hover {
    color: var(--blue-600);
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



/* Sections */
.section {
    padding: 6rem 0;
}

.section-bg-light {
    background-color: var(--blue-50);
}

section.section-bg-gray-light {
    background-color: var(--gray-50);
}

.section-header {
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-content p {
    font-size: var(--font-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mockup-frame {
    width: 100%;
    height: 500px;
    background-color: var(--gray-700);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    border: 4px solid var(--gray-700);
    border-bottom: none;
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
    box-sizing: border-box;
}

.mockup-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Section 1: Features Row */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-title {
    flex: 0 0 300px;
}

.feature-title h2 {
    margin: 0;
}

.feature-list {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.feature-item {
    flex: 1;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--blue-600);
}

.feature-item h3 {
    font-size: var(--font-medium);
}

.feature-item p {
    font-size: var(--font-main);
    margin: 0;
}

/* Section 2: 4 Cards */
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-200);
}

.card p {
    margin-bottom: 0;
}

.card:hover {
    box-shadow: var(--shadow-sm);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    text-align: left;
}

.feature-card p {
    margin-bottom: 0;
}

.feature-card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-sm);
}

.feature-card .card-icon {
    margin: 0 0 1rem 0;
}

.card-icon {
    width: 54px;
    height: 54px;
    background-color: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon span {
    font-size: 24px;
    color: var(--blue-600);
}

/* Section 3: 3 Cards */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card-light-blue {
    background-color: var(--blue-50);
    border: none;
}

.color-blue span {
    color: var(--blue-500);
}

.color-teal span {
    color: #14b8a6;
}

.color-purple span {
    color: #a855f7;
}

/* Section 3: Diagram */
.diagram {
    background-color: var(--blue-950);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagram-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.diag-node {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}


.diag-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    line-height: 1;
}

.diag-label {
    font-size: var(--font-medium);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.diag-sub {
    font-size: var(--font-main);
    color: rgba(255, 255, 255, 0.6);
}

.diag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.diag-arrow-h {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    font-weight: 300;
}

.diagram-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Section 4: Tab Menu */
.tab-menu {
    margin-bottom: 2rem;
}

.tab-menu ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
}

.tab-menu a {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: var(--font-main);
    color: var(--gray-600);
}

.tab-menu li.active a {
    color: var(--blue-600);
    border-bottom: 2px solid var(--blue-600);
    padding-bottom: 1.2rem;
}

.mockup-frame.large {
    height: 400px;
    border-radius: var(--radius-lg);
    border: 8px solid var(--gray-700);
    max-width: 1000px;
}

.mockup-frame.large.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.tab-content {
    position: relative;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.role-tab-panel.active {
    animation: fadeIn 0.4s ease-out forwards;
}

.screen-mockup {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.screen-mockup-header {
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.screen-mockup-dots {
    display: flex;
    gap: 6px;
}

.screen-mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screen-mockup-dots span:nth-child(1) {
    background-color: #f87171;
}

.screen-mockup-dots span:nth-child(2) {
    background-color: #fbbf24;
}

.screen-mockup-dots span:nth-child(3) {
    background-color: #34d399;
}

.screen-mockup-body {
    aspect-ratio: 16/10;
    background-color: var(--gray-50);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Section 5: Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content {
    flex: 1;
}

.split-image,
.split-form {
    flex: 1;
}

.split-image .mockup-frame {
    border-radius: var(--radius-lg);
    border: 8px solid var(--gray-700);
    height: 450px;
}

.feature-list-check {
    margin-top: 2rem;
}

.feature-list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.feature-list-check li::before {
    content: 'check_circle';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    left: 0;
    top: -3px;
    color: var(--blue-600);
    font-size: var(--font-medium);
}

.feature-list-check strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-list-check p {
    margin: 0;
    font-size: var(--font-main);
}

/* Section 6: Target Placeholder */
.target-placeholder {
    padding: 3rem;
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

/* Section 7: Contact Form */
.contact-section {
    align-items: flex-start;
}

.contact-section .split-content {
    flex: 4;
}

.contact-section .split-form {
    flex: 6;
}

.contact-info-wrapper {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-title {
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-info-list.space-y-5>*+* {
    margin-top: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: var(--blue-50);
    border: 1px solid var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box .material-symbols-outlined {
    font-size: var(--font-medium);
    color: var(--blue-500);
}

.contact-text-box {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: var(--gray-900);
    font-size: var(--font-main);
    font-weight: 600;
}

/* New Contact Form Styles */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.space-y-5>*+* {
    margin-top: 1.25rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-label-new {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.text-red-500 {
    color: #ef4444;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
    border-radius: var(--radius);
    padding: 0 1rem;
    outline: none;
    transition: var(--transition);
    font-size: var(--font-main);
}

.form-input-new {
    height: 3rem;
}

.form-textarea-new {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    resize: none;
}

.form-input-new:focus,
.form-textarea-new:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 1px var(--blue-200);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: var(--gray-400);
}

.privacy-group-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-checkbox-wrapper {
    display: flex;
    align-items: center;
    height: 1.25rem;
    margin: 0.25rem 0 0 0;
}

.privacy-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: var(--blue-600);
    cursor: pointer;
}

.privacy-text label {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
}

.text-blue-600 {
    color: var(--blue-600);
}

.font-bold {
    font-weight: 700;
}

.privacy-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.privacy-link:hover {
    color: var(--blue-600);
}

.btn-submit-new {
    width: 100%;
    background-color: var(--blue-600);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-size: var(--font-main);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(18, 88, 224, 0.25);
    transition: var(--transition);
}

.btn-submit-new:hover {
    background-color: var(--blue-500);
    box-shadow: 0 10px 25px -5px rgba(41, 112, 255, 0.4);
}

.submit-icon {
    font-size: var(--font-medium);
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-submit-new:hover .submit-icon {
    transform: translateX(4px);
}

.success-message {
    padding: 4rem 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.success-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.success-icon {
    font-size: 2rem;
    color: #10b981;
}

.success-title {
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.success-desc {
    font-size: var(--font-main);
    color: var(--gray-500);
}

/* Role Tabs for Section 4 */
.role-tabs-wrapper {
    margin-bottom: 3rem;
}

.role-tabs {
    display: inline-flex;
    gap: 1rem;
    background: var(--gray-200);
    padding: 0.5rem;
    border-radius: 50px;
}

.role-tab-btn {
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-main);
    font-weight: 600;
    border: 1px solid transparent;
}

.role-tab-btn.btn-outline {
    border-color: transparent;
    color: var(--gray-600);
}

.role-tab-btn.active.btn-primary {
    border-color: transparent;
    color: var(--blue-600);
    background: var(--white);
}

/* Footer */
footer {
    background-color: var(--blue-950);
    color: var(--gray-400);
    padding: 3rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo strong {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.company-info span {
    display: inline-block;
    margin-right: 1rem;
    font-size: 0.875rem;
}

.copyright {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-row {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .feature-title {
        flex: none;
        width: 100%;
    }

    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .diag-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .diag-arrow-h {
        transform: rotate(90deg);
    }

    .diag-node {
        width: 100%;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .split-content,
    .split-image,
    .split-form {
        width: 100%;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-900);
    padding: 0.25rem;
}

.mobile-menu-btn .material-symbols-outlined {
    font-size: 2rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 0 0 1rem 0;
    z-index: 999;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav li {
    padding: 0;
}

.mobile-menu nav a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.mobile-menu nav a:hover {
    color: var(--blue-600);
    background-color: var(--gray-50);
}

.mobile-menu .btn-full {
    display: block;
    text-align: center;
    margin: 1rem 1.25rem 0;
    padding: 1rem;
    width: calc(100% - 2.5rem);
    font-size: 1rem;
}

@media (max-width: 768px) {
    :root {
        --font-main: 1rem;
        --font-medium: 1.125rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 5rem 0;
    }

    .diagram {
        padding: 1.75rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .gnb,
    .header-utils {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
        animation: fadeIn 0.3s ease-out forwards;
    }

    .feature-list {
        flex-direction: column;
    }

    .card-grid-4,
    .card-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tab-menu ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .tab-menu li {
        text-align: center;
        border-bottom: 1px solid var(--gray-200);
    }

    .tab-menu li.active {
        border-bottom: 2px solid var(--blue-600);
        margin-bottom: -1px;
    }

    .tab-menu a {
        display: block;
        padding: 0.875rem 0;
    }

    .tab-menu li.active a {
        border-bottom: none;
        padding-bottom: 0.875rem;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.25rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Page */
.privacy-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--gray-50);
}

.privacy-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.privacy-title {
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.5rem;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--gray-600);
    line-height: 1.625;
}

.privacy-content-block h2 {
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.privacy-content-block p {
    margin-bottom: 0.5rem;
}

.privacy-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.privacy-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue-600);
    font-weight: 600;
    transition: color 0.2s;
}

.privacy-back-link:hover {
    color: var(--blue-500);
}

.privacy-back-link .material-symbols-outlined {
    margin-right: 0.5rem;
    font-size: var(--font-medium);
}

@media (min-width: 640px) {
    .privacy-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .privacy-section {
        padding: 8rem 0;
    }

    .privacy-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .privacy-container {
        padding: 0 2rem;
    }
}