/* Page container */
.page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.page-header .last-updated {
    color: #888;
    font-size: 14px;
}

/* Section styling */
.page-section {
    margin-bottom: 30px;
}

.page-section h2 {
    font-size: 24px;
    color: #444;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.page-section p,
.page-section ul {
    line-height: 1.8;
    color: #555;
}

.page-section ul {
    padding-left: 25px;
}

.page-section ul li {
    margin-bottom: 10px;
}

/* Highlight box */
.highlight-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #007bff;
}

.highlight-box strong {
    font-weight: 600;
    color: #333;
}

/* Links */
.page-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.page-section a:hover {
    text-decoration: underline;
}

/* About page specific styles */
.about-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-header p {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.features-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card,
.benefit-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-card h4,
.benefit-item h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 18px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    background-color: #667eea;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #5a6fd8;
}

/* Contact page specific styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-item h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.contact-form-section {
    padding: 30px;
    border-radius: 10px;
}

.contact-form-section h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-btn {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.form-btn:hover {
    background: #5a6fd8;
}