* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90e2;
    --accent-color: #f59e0b;
    --text-color: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #10b981;
    --error-color: #ef4444;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

body.large-font {
    font-size: 18px;
}

body.large-font h1 {
    font-size: 2.8rem;
}

body.large-font h2 {
    font-size: 2.2rem;
}

body.large-font h3 {
    font-size: 1.8rem;
}

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

/* Header & Navigation */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    background: var(--background-light);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secondary-button {
    background: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Overview Section */
.overview-section {
    background: var(--background-light);
    padding: 60px 0;
}

.overview-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.overview-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.overview-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
}

.overview-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.services-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Process Section */
.process-section {
    background: var(--background-light);
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    background: var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* Blog Sections */
.blog-preview-section {
    background: var(--background-light);
    padding: 80px 0;
}

.blog-preview-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.blog-preview-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.blog-preview-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.blog-preview-card p {
    color: var(--text-light);
    padding: 0 20px 15px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Forms */
.lead-form-section {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.lead-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.submit-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.registration-number {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    padding: 30px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-buttons {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.decline-btn {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-close-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Font Size Toggle */
.font-size-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.font-size-toggle:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* About Page */
.page-hero-section {
    background: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
}

.about-intro-section {
    padding: 80px 0;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2rem;
}

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

.team-section {
    background: var(--background-light);
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.team-member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.team-member-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-member-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 5px;
    font-size: 1.4rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 20px;
}

.team-bio {
    color: var(--text-light);
    padding: 15px 20px 25px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.value-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Blog Page */
.blog-listing-section {
    padding: 60px 0;
}

.blog-posts-grid {
    display: grid;
    gap: 40px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

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

.blog-post-content {
    padding: 30px 30px 30px 0;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-category {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.blog-post-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.blog-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.blog-cta-section {
    background: var(--background-light);
    padding: 80px 0;
}

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

.cta-content-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-main-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-side h2,
.contact-form-side h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.map-section {
    background: var(--background-light);
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.map-placeholder {
    background: var(--white);
    padding: 100px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-placeholder p:first-child {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Post Pages */
.post-content-section {
    padding: 60px 0;
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
}

.post-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.post-date {
    color: var(--text-light);
}

.post-category-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.post-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-intro {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.7;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    display: block;
}

.post-overview-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary-color);
}

.post-overview-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-overview-list {
    list-style: none;
}

.post-overview-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-color);
}

.post-overview-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.post-body {
    color: var(--text-color);
    line-height: 1.8;
}

.post-body h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 1.9rem;
}

.post-body h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 20px;
}

.post-cta-box {
    background: var(--background-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.post-cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-cta-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.related-posts-section {
    background: var(--background-light);
    padding: 80px 0;
}

.related-posts-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .blog-post-image img {
        height: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}