:root {
    --primary: #ff8c00;
    --primary-hover: #e65100;
    --primary-gradient: linear-gradient(135deg, #ff8c00 0%, #e65100 100%);
    --accent: #4caf50;
    --dark: #1e293b;
    --text: #475569;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --warning-bg: #fffbeb;
    --warning-border: #f59e0b;
    --warning-text: #b45309;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light-bg);
    padding: 40px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 50px 50px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.container.wide-container {
    max-width: 1140px;
}

/* Header Branding */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: var(--light-bg);
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.back-btn:hover {
    background-color: var(--border);
    transform: translateX(-4px);
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--dark);
}

.lang-btn.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.15);
}

.mobile-only-header {
    display: none;
}

.mobile-logo {
    display: none;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.mobile-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* Common Typography Styling */
h1 {
    font-size: 32px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

h2 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
}

h3 {
    font-size: 21px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

p {
    font-size: 15.5px;
    color: var(--text);
    margin-bottom: 16px;
    text-align: justify;
}

.subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

li {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 8px;
}

strong {
    color: var(--dark);
    font-weight: 600;
}

a.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
    transition: opacity 0.2s;
}

a.contact-link:hover {
    opacity: 0.8;
}

.footer-note {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Methods Grid (DeleteAccount specific) */
.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 35px;
}

.method-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

.method-card.email .method-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.method-card.data-removal .method-icon {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.steps-list li {
    position: relative;
    font-size: 14.5px;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
    text-align: left;
}

.steps-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 140, 0, 0.15);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-details {
    font-size: 14.5px;
    margin-bottom: 20px;
    color: var(--text);
}

.email-details p {
    margin-bottom: 10px;
    text-align: left;
}

.email-details strong {
    color: var(--dark);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--accent);
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Warning Box (DeleteAccount specific) */
.warning-box {
    background-color: var(--warning-bg);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.05);
}

.warning-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--warning-text);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(245, 158, 11, 0.2);
}

.warning-text {
    font-size: 14.5px;
    color: #78350f;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Responsive Styles (CSS Media Queries) */
@media (max-width: 768px) {
    body {
        padding: 12px 8px;
    }

    .container {
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .brand-header {
        display: none !important;
    }

    .mobile-only-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-logo {
        display: flex !important;
    }

    h1 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    p,
    li {
        font-size: 14.5px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .method-card {
        padding: 20px 16px;
    }

    .warning-box {
        padding: 16px;
        margin-bottom: 24px;
    }
}