/* EULA Page Specific Styles */

/* Navigation fixes */
.logo img {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
}

.content-section {
    padding: 8rem 0 5rem 0;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--highlight-color);
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: var(--primary-green);
}

.content-section p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section ul, .content-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section strong {
    color: white;
    font-weight: 600;
}

.content-section a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

.subscription-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-green);
}

.important {
    background: rgba(140, 82, 184, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--highlight-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--highlight-color);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.document-note {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles for EULA page */
@media (max-width: 768px) {
    .content-section {
        padding: 6rem 1rem 3rem 1rem;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .subscription-info,
    .important {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}