/* Base styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-link {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Form styles */
.feedback-form, .subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

/* Benefits section */
.benefits {
    padding: 60px 0;
    text-align: center;
}

.benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Newsletter section */
.newsletter {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--text-light);
}

/* Footer styles */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--light-color);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-link {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .nav-list {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
}
/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.service-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
}

.service-features li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

.btn-service {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
    width: 100%;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 32px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--light-color);
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
}
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
}

/* Text Blocks */
.text-block {
    margin-bottom: 40px;
}

.text-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 26px;
}

.text-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* About Page */
.about-page .principles-list {
    list-style-type: none;
    padding-left: 0;
}

.about-page .principles-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-page .principles-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Reviews Page */
.reviews-list {
    margin-bottom: 60px;
}

.review-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

.review-date {
    color: var(--text-light);
    font-size: 14px;
}

.review-text p {
    margin-bottom: 0;
    line-height: 1.7;
}

.add-review {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.add-review h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical;
    min-height: 150px;
}

/* Policy Pages */
.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.policy-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-page .text-block:last-child {
    margin-bottom: 0;
}
.article-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 16px;
}

.article-card-content h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #333;
}

.article-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
/* Article Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 16px;
    opacity: 0.9;
}

.article-meta span {
    margin: 0 15px;
}

.article-content {
    padding: 60px 0;
    background-color: white;
}

.article-content .container {
    max-width: 800px;
}

.article-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-content h2 {
    color: var(--primary-color);
    margin: 30px 0 20px;
    font-size: 28px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box ul {
    margin-top: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: var(--primary-color);
    color: white;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}