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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #343a40;
    background: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}

p, ul, ol {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout */
.commercial-disclosure {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

.disclosure-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.disclosure-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1b263b;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 1px;
}

.disclosure-section {
    margin-bottom: 40px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #daa520;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1b263b;
    margin-bottom: 16px;
    font-weight: 500;
    border-bottom: 1px solid #daa520;
    padding-bottom: 8px;
}

.section-content {
    color: #343a40;
    line-height: 1.8;
}

.info-item {
    margin-bottom: 16px;
}

.info-label {
    font-weight: 600;
    color: #1b263b;
    display: inline-block;
    min-width: 120px;
}

.info-list {
    margin: 8px 0;
    padding-left: 24px;
}

.info-list li {
    margin-bottom: 8px;
    color: #343a40;
    position: relative;
}

.info-list li::before {
    content: '•';
    color: #daa520;
    font-weight: bold;
    position: absolute;
    left: -16px;
}

.contact-info {
    background: #fff8e7;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.alcohol-notice {
    background: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
    color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin: 48px 0;
}

.alcohol-notice h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #daa520;
}

.alcohol-notice p {
    margin: 8px 0;
    font-weight: 500;
}

.back-link {
    text-align: center;
    margin-top: 48px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #daa520;
    color: #1b263b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-link a:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .commercial-disclosure {
        padding: 100px 0 60px;
    }
    
    .disclosure-content {
        padding: 0 16px;
    }
    
    .disclosure-section {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .info-label {
        display: block;
        margin-bottom: 4px;
    }
    
    .disclosure-title {
        margin-bottom: 32px;
    }
    
    .contact-info {
        padding: 24px;
    }
    
    .alcohol-notice {
        padding: 24px;
    }
    
    .back-link a {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .disclosure-content {
        padding: 0 12px;
    }
    
    .disclosure-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .back-link {
        display: none;
    }
    
    .commercial-disclosure {
        padding: 20px 0;
    }
    
    .disclosure-section {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}