* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --navy: #0A1929;
    --electric-blue: #00D9FF;
    --coral: #FF6B6B;
    --light-gray: #F5F7FA;
    --dark-gray: #4A5568;
    --medium-gray: #718096;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--navy);
    background-color: var(--white);
}

.main-navigation {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(10, 25, 41, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-area img {
    border-radius: 8px;
}

.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: var(--electric-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    padding: 7rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--electric-blue);
    color: var(--navy);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.cta-button:hover {
    background-color: var(--coral);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.4);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.features-section {
    background-color: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--navy);
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--navy);
    font-weight: 700;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    padding: 0.6rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.8rem;
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-preview {
    padding: 5rem 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--navy);
    font-weight: 800;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-item {
    text-align: center;
}

.service-item img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.service-item p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background-color: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary:hover {
    background-color: var(--electric-blue);
    color: var(--navy);
    transform: translateY(-2px);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #00b8d4 100%);
    padding: 5rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--white);
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
}

.review-button {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background-color: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.review-button:hover {
    background-color: var(--navy);
    transform: translateY(-2px);
}

.blog-preview {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--navy);
    font-weight: 800;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 2rem 1rem;
    color: var(--navy);
    font-weight: 700;
}

.blog-card p {
    margin: 0 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin: 0 2rem 2rem;
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--coral);
}

.site-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookie-btn.accept-all {
    background-color: var(--electric-blue);
    color: var(--navy);
}

.cookie-btn.accept-all:hover {
    background-color: var(--coral);
    color: var(--white);
}

.cookie-btn.reject {
    background-color: var(--light-gray);
    color: var(--navy);
}

.cookie-btn.reject:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.cookie-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    padding: 5rem 2.5rem;
    text-align: center;
}

.header-content h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.header-content p {
    font-size: 1.3rem;
    color: var(--light-gray);
}

.about-intro {
    padding: 5rem 0;
}

.about-intro .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 800;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.values-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--navy);
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 700;
}

.value-card ul {
    list-style: none;
}

.value-card ul li {
    padding: 0.6rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.8rem;
}

.value-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
}

.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 800;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 700;
}

.member-position {
    color: var(--electric-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:not(.member-position) {
    color: var(--dark-gray);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5252 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--coral);
}

.cta-section .cta-button:hover {
    background-color: var(--navy);
    color: var(--white);
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 800;
}

.service-content p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.process-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--navy);
    font-weight: 800;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, #00b8d4 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.pricing-section {
    padding: 5rem 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 800;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #00b8d4 100%);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.pricing-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.8rem;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
}

.pricing-card.featured ul li::before {
    color: var(--white);
}

.blog-section {
    padding: 3rem 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.post-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.post-date {
    color: var(--medium-gray);
}

.post-category {
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.post-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.post-content h2 a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}

.post-content h2 a:hover {
    color: var(--electric-blue);
}

.post-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--coral);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.newsletter-section p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.contact-section {
    padding: 3rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--navy);
    font-weight: 800;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--electric-blue);
    font-weight: 700;
}

.info-block p,
.info-block ul {
    color: var(--dark-gray);
    line-height: 1.8;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--coral);
}

.contact-form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--navy);
    font-weight: 800;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.review-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
}

.review-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 800;
}

.review-section p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.map-section {
    padding: 3rem 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--navy);
    font-weight: 800;
}

.map-placeholder {
    background: var(--light-gray);
    padding: 5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--coral);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 800;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-form {
    margin-top: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.star {
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.star:hover,
.star.active {
    color: #FFD700;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    padding: 4rem 2.5rem;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.post-excerpt {
    font-size: 1.3rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.post-content-wrapper {
    padding: 3rem 2.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
}

.post-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--navy);
    font-weight: 700;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--light-gray);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.back-to-blog {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--coral);
}

.related-posts {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.related-posts h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--navy);
    font-weight: 800;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.related-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1.5rem;
    font-size: 1.3rem;
}

.related-card h3 a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}

.related-card h3 a:hover {
    color: var(--electric-blue);
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-intro .section-container {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
