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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c2;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 141, 0.98);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #e67e22;
}

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

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

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    white-space: nowrap;
}

.main-navigation {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

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

.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.header-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 18px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-section, .about-intro, .services-overview, .blog-container {
    background: var(--white);
}

.intro-section h2, .about-intro h2, .services-overview h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-section p, .about-intro p, .services-overview p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 18px;
}

.features-grid, .testimonials-grid, .posts-grid, .team-grid, .values-grid, .process-steps, .faq-grid, .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card, .testimonial-card, .post-preview, .team-card, .value-item, .process-step, .faq-item, .related-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover, .post-preview:hover, .team-card:hover, .related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3, .value-item h3, .faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.testimonial-card {
    font-style: italic;
    position: relative;
    padding-left: 40px;
}

.testimonial-card::before {
    content: '"';
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 10px;
    top: 10px;
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-style: normal;
    color: var(--text-color);
}

.post-preview img, .team-card img, .related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-card img {
    height: 300px;
}

.post-preview h3, .related-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.read-more, .read-more-btn {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover, .read-more-btn:hover {
    color: var(--accent-color);
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-box, .vision-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.mission-box h3, .vision-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fact-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 60px 20px;
    text-align: center;
}

.fact-box {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.fact-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.fact-box p {
    font-size: 18px;
    line-height: 1.8;
}

.lead-form-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-color);
}

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

.services-detailed {
    padding: 40px 20px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-duration {
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.blog-intro {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
}

.blog-post-card:hover {
    box-shadow: var(--shadow-hover);
}

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

.post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h2 a:hover {
    color: var(--secondary-color);
}

.post-excerpt {
    color: var(--text-light);
    margin: 15px 0;
}

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

.newsletter-section {
    background: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

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

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

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.subscribe-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.contact-section {
    padding: 60px 20px;
}

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

.contact-details {
    margin: 30px 0;
}

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

.contact-icon {
    font-size: 24px;
}

.contact-text h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

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

.registration-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.map-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

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

.map-section > .content-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 141, 0.9);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.faq-contact {
    padding: 60px 20px;
}

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

.blog-post {
    background: var(--white);
}

.post-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 20px;
    color: var(--white);
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-header h1 {
    font-size: 42px;
    margin: 15px 0;
}

.post-meta {
    justify-content: center;
}

.post-featured-image {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.post-content {
    background: var(--white);
}

.post-content .content-wrapper {
    max-width: 800px;
}

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

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

.post-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin: 20px 0 20px 30px;
}

.post-content li {
    margin-bottom: 10px;
    font-size: 18px;
}

.post-conclusion {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 5px solid var(--secondary-color);
}

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

.post-author-bio {
    background: var(--bg-light);
    padding: 40px 20px;
}

.post-author-bio .content-wrapper {
    max-width: 800px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

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

.related-posts {
    padding: 60px 20px;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.site-footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 15px;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .features-grid, .testimonials-grid, .posts-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .service-block, .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .blog-post-card {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .post-author-bio .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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