/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --graphite: #2c3e50;
    --graphite-light: #34495e;
    --graphite-dark: #1a252f;
    --teal-muted: #4ecdc4;
    --teal-dark: #26a69a;
    --teal-light: #80deea;
    --bg-cream: #f5f7fa;
    --bg-white: #ffffff;
    --text-dark: #1a252f;
    --text-medium: #34495e;
    --text-light: #7f8c8d;
    --border-color: #d5d8dc;
    --accent: #26a69a;
    --accent-light: #4ecdc4;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

body:has(.cookie-banner:not([style*="display: none"])) {
    padding-bottom: 180px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 24px;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.cookie-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.cookie-btn.accept:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.cookie-btn.reject {
    border-color: #e74c3c;
    color: #e74c3c;
}

.cookie-btn.reject:hover {
    background: #e74c3c;
    color: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 24px 70px;
    background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--graphite) 100%);
    margin-top: 0;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bg-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.flag-icon {
    font-size: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.hero-description strong {
    color: var(--bg-white);
    font-weight: 600;
}

/* Offers Section */
.offers-section {
    padding: 80px 24px;
    background: var(--bg-cream);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.offer-card.featured {
    border-color: var(--accent);
    border-width: 3px;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--bg-white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.card-content {
    padding: 50px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.operator-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operator-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}.operator-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 90px;
    width: 100%;

    background: #f1f4f8;
    border-radius: 10px;

    border: 1px solid #e2e6ec;
}
.operator-logo-img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}



.operator-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    text-align: center;
    margin-top: 8px;
}

.betclic {
    color: var(--accent);
}

.unibet {
    color: #00a859;
}

.bwin {
    color: #ff9800;
}

.netbet {
    color: #e64a19;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star {
    color: #ff9800;
    font-size: 18px;
    line-height: 1;
}

.rating-bar {
    height: 8px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal-muted) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.bonus-section {
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bonus-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.bonus-description {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-button {
    display: block;
    padding: 14px 28px;
    background: var(--graphite);
    color: var(--bg-white);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.payment-icon {
    width: 32px;
    height: 32px;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.payment-icon:hover {
    opacity: 1;
    color: var(--accent);
}

/* Information Blocks */
.info-blocks-section {
    padding: 70px 24px;
    background: var(--bg-white);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.info-block {
    display: flex;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
    max-width: 1100px;
    margin: 0 auto;
}

.info-block:last-child {
    border-bottom: none;
}

.info-icon {
    color: var(--accent);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.info-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Visual Break - Numeric Typography */
.visual-break {
    padding: 90px 24px;
    background: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.numeric-display {
    display: flex;
    gap: 24px;
    align-items: center;
}

.numeric-digit {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--graphite);
    line-height: 1;
    opacity: 0.15;
    letter-spacing: -8px;
    position: relative;
}

.numeric-digit::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0.3;
}

/* Footer */
.footer {
    background: var(--graphite-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 24px 40px;
    border-top: 3px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 56px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.footer-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.footer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal-light);
    font-weight: bold;
}

.age-warning {
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-center {
    margin-bottom: 24px;
}

.help-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 6px;
}

.help-contact {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.help-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 36px;
}

.footer-logo {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-logo:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
    background: rgba(78, 205, 196, 0.1);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.footer-logo-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo-img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-logo.trust {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    border-color: var(--teal-light);
}

.footer-logo.age-18 {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--teal-light);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-light);
    transition: width 0.2s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .nav {
        gap: 24px;
    }

    .hero {
        padding: 80px 24px 50px;
        margin-bottom: 100px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .offers-section,
    .info-blocks-section {
        padding: 60px 24px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .numeric-digit {
        font-size: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-content {
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 16px 40px;
    }

    .offers-section,
    .info-blocks-section {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .offer-card {
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .card-content {
        padding: 40px 20px 20px;
    }

    .operator-logo {
        font-size: 26px;
    }

    .numeric-digit {
        font-size: 60px;
        gap: 12px;
    }

    .info-title {
        font-size: 22px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* About Page Styles */
.about-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-align: center;
}

.about-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-block {
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.about-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.about-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-block p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.about-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.about-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.about-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-vision {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    padding: 24px;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    margin-top: 24px;
    font-family: 'Playfair Display', serif;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    .offer-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 24px 60px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-block {
        padding: 24px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 16px 40px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-block {
        padding: 20px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .about-subtitle {
        font-size: 22px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-align: center;
}

.contact-intro {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 40px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.2s ease;
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--graphite);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(38, 166, 154, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-success {
    background: var(--bg-white);
    border: 2px solid var(--accent);
    padding: 48px 40px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 24px 60px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 16px 40px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px 20px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .form-input,
    .form-textarea {
        clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
    }

    .form-submit {
        clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
    }
}

/* Balanced Usage Page Styles */
.balanced-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

.balanced-content {
    max-width: 900px;
    margin: 0 auto;
}

.balanced-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-align: center;
}

.balanced-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.balanced-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    text-align: center;
}

.balanced-block {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.balanced-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.balanced-block.highlight {
    background: linear-gradient(135deg, rgba(38, 166, 154, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-color: var(--accent);
}

.balanced-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.balanced-icon {
    font-size: 32px;
    line-height: 1;
}

.balanced-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin: 0;
}

.balanced-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.balanced-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.balanced-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.balanced-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.help-resources {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.help-resource {
    padding: 24px;
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    border: 1px solid var(--border-color);
    border-left-width: 4px;
    border-left-color: var(--accent);
}

.help-resource-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.help-resource-contact {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

.help-resource-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-style: italic;
}

.help-resource-link {
    font-size: 15px;
    color: var(--text-medium);
    margin-top: 8px;
}

.help-resource-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.help-resource-link a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .balanced-section {
        padding: 80px 24px 60px;
    }

    .balanced-title {
        font-size: 36px;
    }

    .balanced-block {
        padding: 24px;
    }

    .balanced-subtitle {
        font-size: 22px;
    }

    .balanced-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .balanced-section {
        padding: 60px 16px 40px;
    }

    .balanced-title {
        font-size: 28px;
    }

    .balanced-block {
        padding: 20px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .balanced-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .balanced-subtitle {
        font-size: 20px;
    }

    .help-resource {
        padding: 20px;
    }
}

/* Terms of Use Page Styles */
.terms-section {
    padding: 100px 24px 80px;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-align: center;
}

.terms-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.terms-intro p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
    text-align: center;
}

.terms-article {
    margin-bottom: 32px;
    padding: 32px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.terms-article:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.terms-article-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.terms-article-content {
    flex: 1;
}

.terms-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.terms-article p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.terms-list li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.terms-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 80px 24px 60px;
    }

    .terms-title {
        font-size: 36px;
    }

    .terms-article {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .terms-article-number {
        font-size: 28px;
        width: auto;
    }

    .terms-article-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 60px 16px 40px;
    }

    .terms-title {
        font-size: 28px;
    }

    .terms-article {
        padding: 20px;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .terms-article-number {
        font-size: 24px;
    }

    .terms-article-title {
        font-size: 18px;
    }
}
