/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #2d3748;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    color: #fff;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #764ba2;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2d3748;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.3);
}

.btn-offer {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.age-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    color: #e2e8f0;
}

.cookie-content a {
    color: #4facfe;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #2d3748;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Offers Section */
.offers-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.offers-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.offer-header h4 {
    font-size: 1.5rem;
    color: #2d3748;
}

.offer-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.feature::before {
    content: '✓';
    color: #48bb78;
    margin-right: 0.5rem;
    font-weight: 700;
}

.offer-bonus {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-text {
    font-weight: 600;
    color: #2d3748;
}

.offer-footer {
    text-align: center;
}

.offer-footer .disclaimer {
    display: block;
    margin-top: 1rem;
    color: #718096;
    font-size: 0.8rem;
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 4rem 0;
}

.safety-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.safety-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-restriction {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.safety-header h3 {
    font-size: 2.5rem;
    color: #2d3748;
    margin: 0;
}

.safety-body p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.safety-organizations {
    margin: 2rem 0;
}

.safety-organizations h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.org-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.org-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.org-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #667eea;
}

.org-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.org-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

.safety-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.safety-link {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.safety-link:hover {
    color: #764ba2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #e2e8f0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4facfe;
}

.footer-orgs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-orgs a {
    transition: transform 0.3s ease;
}

.footer-orgs a:hover {
    transform: scale(1.1);
}

.footer-orgs img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.9rem;
    color: #718096;
}

/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.disclaimer-box {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.disclaimer-box h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-box p {
    color: #4a5568;
    font-weight: 500;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #4a5568;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: background-color 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 4rem 0;
}

.faq-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    margin: 0;
}

/* Notice Section */
.notice-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 4rem 0;
    color: white;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.notice-content p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.help-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #667eea;
}

.help-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.help-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Legal Section Styles */
.legal-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.table-of-contents {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.table-of-contents h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #667eea;
}

.legal-text {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-text .section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-text .section:last-child {
    border-bottom: none;
}

.legal-text h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.legal-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Policy Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsible Gambling Specific Styles */
.age-warning-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 0;
    color: white;
}

.age-warning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.age-restriction-large {
    background: white;
    color: #f5576c;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.age-warning-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.age-warning-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.principles-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.principles-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.principle-card p {
    color: #4a5568;
    margin: 0;
}

.warning-signs-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 4rem 0;
}

.warning-signs-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.warning-signs-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.warning-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.warning-category h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.warning-category ul {
    list-style: none;
}

.warning-category li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.warning-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.self-assessment-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.self-assessment-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.self-assessment-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.assessment-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.question-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.question-card p:first-child {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
}

.question-card p:last-child {
    color: #4a5568;
    margin: 0;
}

.help-resources-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 4rem 0;
}

.help-resources-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.help-resources-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.org-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
}

.org-card .org-link {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.org-card .org-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.org-info h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.org-info p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.org-info p:last-child {
    margin-bottom: 0;
}

.tools-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.tools-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.tools-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tool-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tool-card p {
    color: #4a5568;
    margin: 0;
}

.family-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%);
    padding: 4rem 0;
}

.family-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.family-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.family-advice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advice-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advice-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advice-card ul {
    list-style: none;
}

.advice-card li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.advice-card li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.advice-card:first-child li::before {
    content: '✅';
    color: #48bb78;
}

.advice-card:last-child li::before {
    content: '❌';
    color: #f56565;
}

.legal-info-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 0;
}

.legal-info-section h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.legal-info-section > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-point {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.legal-point h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-point p {
    color: #4a5568;
    margin: 0;
}

.disclaimer-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 4rem 0;
    color: white;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: white;
    margin-bottom: 2rem;
}

.disclaimer-content p {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disclaimer-content .help-links {
    margin-top: 2rem;
}

.disclaimer-content .help-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.disclaimer-content .help-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offers-section h3 {
        font-size: 2rem;
    }
    
    .safety-header {
        flex-direction: column;
        text-align: center;
    }
    
    .safety-header h3 {
        font-size: 2rem;
    }
    
    .age-restriction {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .org-links {
        flex-direction: column;
        align-items: center;
    }
    
    .org-link {
        width: 100%;
        max-width: 200px;
    }
    
    .safety-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-orgs {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
    }
    
    .principles-grid,
    .warning-signs-grid,
    .assessment-questions,
    .help-organizations,
    .tools-grid,
    .family-advice,
    .legal-points {
        grid-template-columns: 1fr;
    }
    
    .age-restriction-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .org-card .org-link {
        flex-direction: column;
        text-align: center;
    }
    
    .org-card .org-logo {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .offers-section,
    .safety-section,
    .about-section,
    .contact-section,
    .legal-section,
    .principles-section,
    .warning-signs-section,
    .self-assessment-section,
    .help-resources-section,
    .tools-section,
    .family-section,
    .legal-info-section {
        padding: 2rem 0;
    }
    
    .offers-section h3,
    .safety-header h3 {
        font-size: 1.5rem;
    }
    
    .offer-card,
    .contact-info,
    .contact-form,
    .legal-text,
    .principle-card,
    .warning-category,
    .question-card,
    .org-card,
    .tool-card,
    .advice-card,
    .legal-point {
        padding: 1rem;
    }
    
    .btn-offer {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .age-restriction-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card {
    animation: fadeInUp 0.6s ease forwards;
}

.offer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print Styles */
/* Contact Page Specific Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-detail a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #764ba2;
}

/* Enhanced form styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.disclaimer-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 4rem 0;
    color: white;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.disclaimer-content p {
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.disclaimer-content .help-links {
    margin-top: 2rem;
}

.disclaimer-content .help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .help-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Legal Page Specific Styles */
.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-header .last-updated {
    color: #4a5568;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

/* Improved Legal Page Styles */
.legal-section-improved {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.legal-content-improved {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.legal-header-improved {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.legal-header-improved h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.legal-header-improved .last-updated-improved {
    color: #667eea;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.table-of-contents-improved {
    margin-bottom: 3rem;
}

.toc-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.toc-card h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.toc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.toc-card ul li {
    margin: 0;
}

.toc-link {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-left-color: #667eea;
    transform: translateX(5px);
}

.legal-text-improved {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.section-card h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    padding-bottom: 0.5rem;
}

.section-card h4 {
    color: #4a5568;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.section-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-card ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.section-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.section-card a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.02);
    border-radius: 12px;
    border-left: 4px solid rgba(102, 126, 234, 0.3);
}

.subsection h4 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 1rem;
}

.note-box {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.note-box p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.cookie-table-improved {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table-improved th,
.cookie-table-improved td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table-improved th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table-improved td {
    color: #4a5568;
    font-size: 0.9rem;
}

.cookie-table-improved tr:hover {
    background: rgba(102, 126, 234, 0.02);
}

.cookie-table-improved tr:last-child td {
    border-bottom: none;
}

.cookie-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-type.essential {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.cookie-type.analytical {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.contact-info-improved {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.contact-method .contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-method p {
    margin: 0;
    color: #4a5568;
}

/* Improved Contact Page Styles */
.contact-section-improved {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-content-improved {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-header-improved {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header-improved h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-header-improved p {
    color: #f7fafc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-wrapper-improved {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-card, .info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.form-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.form-card h3, .info-card h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.form-group-improved {
    margin-bottom: 1.5rem;
}

.form-group-improved label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
    font-size: 1rem;
}

.form-group-improved input,
.form-group-improved select,
.form-group-improved textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group-improved input:focus,
.form-group-improved select:focus,
.form-group-improved textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group-improved select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group-improved textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-label-improved {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label-improved input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark-improved {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label-improved input[type="checkbox"]:checked + .checkmark-improved {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-label-improved input[type="checkbox"]:checked + .checkmark-improved::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.btn-contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 1rem;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.contact-details-improved {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-improved {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-improved:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-text p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.contact-text a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Enhanced mobile responsiveness for contact page */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
    
    .disclaimer-content p {
        font-size: 1rem;
    }
    
    .help-links {
        gap: 1rem;
    }
    
    .disclaimer-content .help-link {
        padding: 0.75rem;
    }
    
    .legal-header h2 {
        font-size: 2rem;
    }
    
    /* Improved Legal Page Mobile Styles */
    .legal-section-improved {
        padding: 4rem 0 3rem;
    }
    
    .legal-header-improved {
        margin-bottom: 3rem;
        padding-top: 1rem;
    }
    
    .legal-header-improved h2 {
        font-size: 2.2rem;
    }
    
    .legal-header-improved .last-updated-improved {
        font-size: 0.9rem;
    }
    
    .toc-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .toc-card h3 {
        font-size: 1.3rem;
    }
    
    .section-card {
        padding: 2rem;
        margin: 0 0.5rem 1rem;
    }
    
    .section-card h3 {
        font-size: 1.5rem;
    }
    
    .section-card h4 {
        font-size: 1.2rem;
    }
    
    .subsection {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .table-wrapper {
        margin: 1rem -0.5rem;
    }
    
    .cookie-table-improved th,
    .cookie-table-improved td {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .contact-method .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    /* Improved Contact Page Mobile Styles */
    .contact-section-improved {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .contact-header-improved {
        margin-bottom: 3rem;
    }
    
    .contact-header-improved h2 {
        font-size: 2.2rem;
    }
    
    .contact-header-improved p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-wrapper-improved {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-card, .info-card {
        padding: 2rem;
    }
    
    .form-card h3, .info-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-detail-improved {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .contact-text h4 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .disclaimer-section {
        padding: 2rem 0;
    }
    
    .disclaimer-content {
        padding: 0 1rem;
    }
    
    /* Improved Contact Page Small Mobile Styles */
    .contact-section-improved {
        padding: 2rem 0;
    }
    
    .contact-header-improved {
        margin-bottom: 2rem;
    }
    
    .contact-header-improved h2 {
        font-size: 1.8rem;
    }
    
    .contact-header-improved p {
        font-size: 1rem;
    }
    
    .contact-wrapper-improved {
        gap: 1.5rem;
    }
    
    .form-card, .info-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-card h3, .info-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group-improved {
        margin-bottom: 1.2rem;
    }
    
    .form-group-improved input,
    .form-group-improved select,
    .form-group-improved textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-contact-submit {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-detail-improved {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .checkbox-label-improved {
        font-size: 0.8rem;
    }
    
    /* Improved Legal Page Small Mobile Styles */
    .legal-section-improved {
        padding: 3rem 0 2rem;
    }
    
    .legal-header-improved {
        margin-bottom: 2rem;
        padding-top: 0.5rem;
    }
    
    .legal-header-improved h2 {
        font-size: 1.8rem;
    }
    
    .legal-header-improved .last-updated-improved {
        font-size: 0.8rem;
    }
    
    .toc-card {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .toc-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .toc-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .section-card {
        padding: 1.5rem;
        margin: 0 0.25rem 1rem;
    }
    
    .section-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .section-card h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem;
    }
    
    .section-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .subsection {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .note-box {
        padding: 0.75rem;
    }
    
    .table-wrapper {
        margin: 0.75rem -0.25rem;
    }
    
    .cookie-table-improved th,
    .cookie-table-improved td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .contact-method {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .contact-method .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .contact-method p {
        font-size: 0.9rem;
    }
}

@media print {
    .modal-overlay,
    .cookie-consent {
        display: none;
    }
} 