/* Cookie Policy Page Specific CSS - Isolated Styling */
.main-bg .container.overflowcheck {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.main-bg .container.overflowcheck h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    text-align: center;
}


.main-bg .container.overflowcheck .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.main-bg .container.overflowcheck h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.main-bg .container.overflowcheck .body-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #444;
}

.main-bg .container.overflowcheck a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-bg .container.overflowcheck a:hover {
    color: #b38f2a;
    text-decoration: underline;
}

.main-bg .container.overflowcheck ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.main-bg .container.overflowcheck ul li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.main-bg .container.overflowcheck ul li a {
    font-weight: 500;
}

.main-bg .container.overflowcheck a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.main-bg .container.overflowcheck {
    position: relative;
    z-index: 1;
}

/* Add to your cookie-policy.css */
.main-bg .container.overflowcheck a.policy-link {
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: underline;
    color: #d4af37;
}

.main-bg .container.overflowcheck a.policy-link:hover {
    color: #b38f2a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-bg .container.overflowcheck {
        padding: 20px;
    }
    
    .main-bg .container.overflowcheck h1 {
        font-size: 2rem;
    }
    
    .main-bg .container.overflowcheck h2 {
        font-size: 1.5rem;
    }
    
    .main-bg .container.overflowcheck .body-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-bg .container.overflowcheck {
        padding: 15px;
        margin: 20px auto;
    }
    
    .main-bg .container.overflowcheck h1 {
        font-size: 1.8rem;
    }
}