
* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
  padding: 0;
    margin: 0;
}

.header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.logo-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-header img {
    height: 50px;
    width: auto;
    max-width: 200px;
}


.header-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.header-links a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s;
}

.header-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
  background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333333;
}

.modal-description {
    color: #666666;
    font-size: 16px;
    margin-bottom: 30px;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-link {
    display: block;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.legal-link:hover {
    background-color: #e0e0e0;
    color: #333333;
}

.legal-link-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.legal-link-url {
    font-size: 14px;
    color: #0066cc;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 16px;
}

a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #0052a3;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.footer .legal {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer .links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    p {
        font-size: 15px;
    }
    
    .header-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer .links {
        flex-direction: column;
        gap: 10px;
    }
}
    