/* Legal Pages Styling */
.terms-wrapper,
.privacy-wrapper,
.sitemap-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.terms-wrapper h2,
.privacy-wrapper h2,
.sitemap-wrapper h2 {
    color: #2c3e50;
    margin: 30px 0 20px;
    font-size: 24px;
    font-weight: 600;
}

.terms-wrapper h2:first-child,
.privacy-wrapper h2:first-child,
.sitemap-wrapper h2:first-child {
    margin-top: 0;
}

.terms-wrapper h3,
.privacy-wrapper h3 {
    color: #34495e;
    margin: 25px 0 15px;
    font-size: 20px;
    font-weight: 500;
}

.terms-wrapper p,
.privacy-wrapper p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-wrapper ul,
.privacy-wrapper ul,
.sitemap-wrapper ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-wrapper ul li,
.privacy-wrapper ul li,
.sitemap-wrapper ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.terms-wrapper ul li:before,
.privacy-wrapper ul li:before,
.sitemap-wrapper ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

.terms-wrapper address,
.privacy-wrapper address,
.sitemap-wrapper address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
    margin: 20px 0;
}

.terms-wrapper a,
.privacy-wrapper a,
.sitemap-wrapper a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-wrapper a:hover,
.privacy-wrapper a:hover,
.sitemap-wrapper a:hover {
    color: #3498db;
}

/* Sitemap Specific Styles */
.sitemap-section {
    margin-bottom: 40px;
}

.sitemap-section:last-child {
    margin-bottom: 0;
}

.sitemap-section h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sitemap-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-wrapper,
    .privacy-wrapper,
    .sitemap-wrapper {
        padding: 20px;
    }

    .sitemap-section ul {
        grid-template-columns: 1fr;
    }
} 