/* ==================== CSS Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #418bff;
    --primary-dark: #2d6cdf;
    --secondary-color: #64b5f6;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* ==================== Cookie Banner ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ==================== Header & Navigation ==================== */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 139, 255, 0.95) 0%, rgba(45, 108, 223, 0.9) 100%);
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits ul {
    margin: 30px 0;
}

.hero-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #4ade80;
    pointer-events: none;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ==================== Stats Section ==================== */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

/* ==================== Services Section ==================== */
.services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== About & Content Sections ==================== */
.about-preview,
.about-story,
.methodology {
    padding: 80px 0;
}

.about-content-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.features-list {
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    pointer-events: none;
}

.about-image img,
.content-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ==================== Testimonials ==================== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==================== Values & Team ==================== */
.values,
.team,
.achievements {
    padding: 80px 0;
}

.values {
    background: var(--bg-secondary);
}

.values h2,
.team h2,
.achievements h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px 20px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.achievement-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--text-light);
}

/* ==================== Methodology ==================== */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.method-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.method-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.method-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Page Hero ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-info-col h2,
.contact-form-col h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
}

.contact-text a:hover {
    text-decoration: underline;
}

.availability {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: var(--text-light);
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    gap: 20px;
}

.social-links-large a {
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links-large a:hover {
    transform: scale(1.2);
}

/* ==================== Forms ==================== */
.contact-form {
    background: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.form-success svg {
    flex-shrink: 0;
}

/* ==================== Map Section ==================== */
.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.map-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    line-height: 1.8;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    color: var(--text-color);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.map-placeholder p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.map-note {
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== FAQ Section ==================== */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Blog Section ==================== */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--text-color);
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.blog-author strong {
    display: block;
    font-size: 14px;
}

.blog-author span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== Newsletter ==================== */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==================== Article Page ==================== */
.article-page {
    background: white;
}

.article-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

.article-header {
    max-width: 900px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.article-author-info strong {
    display: block;
}

.article-author-info span {
    display: block;
    opacity: 0.9;
    font-size: 14px;
}

.article-featured-image {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.article-featured-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.article-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.article-content .lead {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: var(--text-color);
}

.article-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-light);
}

.article-content ul,
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-light);
}

.article-cta {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.article-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 25px;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

.article-tags,
.article-share {
    margin-bottom: 30px;
}

.article-tags strong,
.article-share strong {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.article-tags a {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: white;
}

.article-share .social-links {
    display: flex;
    gap: 15px;
}

.article-share .social-links a {
    color: var(--primary-color);
    transition: var(--transition);
}

.article-share .social-links a:hover {
    transform: scale(1.2);
}

.related-articles {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.related-articles h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    padding: 20px;
    font-size: 18px;
    line-height: 1.5;
}

.related-card h4 a {
    color: var(--text-color);
}

.related-card h4 a:hover {
    color: var(--primary-color);
}

/* ==================== Legal Pages ==================== */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-color);
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-color);
}

.legal-section p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

/* ==================== Footer ==================== */
.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #e0e0e0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #e0e0e0;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a3e;
    color: #b0b0b0;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-header h2,
    .page-hero h1,
    .article-header h1 {
        font-size: 32px;
    }

    .content-grid,
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .stat-number,
    .achievement-number {
        font-size: 40px;
    }

    .contact-grid,
    .blog-grid,
    .related-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .article-content .lead {
        font-size: 20px;
    }

    .article-content p,
    .article-content li {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .service-card {
        padding: 30px 20px;
    }
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
