/* Content pages specific styles (about, contact, privacy-policy, terms) */

.container {
    max-width: 900px;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    color: #764ba2;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.content-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

.content-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-section strong {
    color: #333;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.95em;
    margin-top: 10px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card h3 {
    color: #764ba2;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #667eea;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* About page specific */
.highlight-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin: 25px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 25px;
    }
    
    .content-section h2 {
        font-size: 1.5em;
    }
    
    .content-section h3 {
        font-size: 1.2em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
