* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #FFFFFF;
    --deep-navy: #0A1628;
    --electric-blue: #00A8FF;
    --coral-accent: #FF6B6B;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-text: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--primary-white);
}

.primary-navigation {
    background-color: var(--primary-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--electric-blue);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-navy);
    letter-spacing: -0.5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--deep-navy);
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-navy);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--electric-blue);
}

.hero-banner {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2942 100%);
    padding: 7rem 2.5rem;
    color: var(--primary-white);
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-question,
.btn-submit {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--electric-blue);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,168,255,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background-color: var(--primary-white);
    color: var(--deep-navy);
}

.btn-outline {
    background-color: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-outline:hover {
    background-color: var(--electric-blue);
    color: var(--primary-white);
}

.btn-question {
    background-color: var(--coral-accent);
    color: var(--primary-white);
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
}

.btn-question:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.3);
}

.hero-image-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
@media (max-width:450px){
.content-container{
padding: 0 0.5rem;
}
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--deep-navy);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--coral-accent));
    border-radius: 2px;
}

.summary-highlight {
    background-color: var(--light-gray);
    padding: 4rem 2.5rem;
    margin: 3rem 0;
}

.summary-highlight h2 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.summary-highlight p {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.services-showcase {
    padding: 6rem 2.5rem;
    background-color: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
}
@media (max-width:450px){
.service-card{
padding: 0.5rem;;
}
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,168,255,0.15);
    border-color: var(--electric-blue);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.process-section {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
}
@media (max-width:450px){
.process-section{
padding: 6rem 0.5rem;
}
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--electric-blue);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral-accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--deep-navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.pricing-section {
    padding: 6rem 2.5rem;
    background-color: var(--primary-white);
}
@media (max-width:450px){
.pricing-section {
    padding: 6rem 1rem;
}
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.pricing-card {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--light-gray);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.featured-card {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(0,168,255,0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--coral-accent);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: var(--deep-navy);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--electric-blue);
    margin-bottom: 2rem;
}

.price-tag span {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.8rem 0;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list i {
    color: var(--electric-blue);
}

.testimonials-section {
    padding: 6rem 2.5rem;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2942 100%);
    color: var(--primary-white);
}
@media (max-width:450px){
.testimonials-section{
padding: 6rem 1rem;
}
}
.testimonials-section .section-title {
    color: var(--primary-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.95rem;
}

.faq-section {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--primary-white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--electric-blue);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 2.5rem;
    background: linear-gradient(135deg, var(--electric-blue) 0%, #0088cc 100%);
    color: var(--primary-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.site-footer {
    background-color: var(--deep-navy);
    color: var(--primary-white);
    padding: 4rem 2.5rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--electric-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.registration-number {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-white);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--medium-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cookie-policy-link {
    color: var(--electric-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--electric-blue);
    color: var(--primary-white);
}

.accept-btn:hover {
    background-color: #0088cc;
}

.customize-btn {
    background-color: var(--light-gray);
    color: var(--deep-navy);
}

.customize-btn:hover {
    background-color: var(--medium-gray);
    color: var(--primary-white);
}

.decline-btn {
    background-color: transparent;
    color: var(--medium-gray);
    border: 2px solid var(--medium-gray);
}

.decline-btn:hover {
    background-color: var(--medium-gray);
    color: var(--primary-white);
}

.about-hero,
.blog-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2942 100%);
    padding: 5rem 2.5rem;
    text-align: center;
    color: var(--primary-white);
}

.about-hero h1,
.blog-hero h1,
.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}
@media (max-width:450px){
.about-hero h1,
.blog-hero h1,
.contact-hero h1{
font-size:1.5em;
}
}
.hero-intro,
.blog-subtitle,
.contact-intro {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    padding: 6rem 2.5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content h2 {
    color: var(--deep-navy);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.values-section {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    color: var(--coral-accent);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--deep-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2.5rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: var(--deep-navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--electric-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: var(--medium-gray);
    line-height: 1.7;
}

.achievements-section {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.cta-about {
    padding: 6rem 2.5rem;
    background: linear-gradient(135deg, var(--coral-accent) 0%, #ff5252 100%);
    color: var(--primary-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.blog-listing {
    padding: 6rem 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--electric-blue);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--deep-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--electric-blue);
}

.blog-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--electric-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.blog-cta {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
    text-align: center;
}

.blog-cta h2 {
    color: var(--deep-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 6rem 2.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-section h2 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--electric-blue);
    flex-shrink: 0;
}

.info-block h3 {
    color: var(--deep-navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
    color: var(--medium-gray);
    line-height: 1.7;
    text-decoration: none;
}

.info-block a:hover {
    color: var(--electric-blue);
}

.contact-form-section h2 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--deep-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--electric-blue);
}

.btn-submit {
    background-color: var(--electric-blue);
    color: var(--primary-white);
    width: fit-content;
}

.btn-submit:hover {
    background-color: #0088cc;
}

.map-section {
    padding: 6rem 2.5rem;
    background-color: var(--light-gray);
}

.map-section h2 {
    color: var(--deep-navy);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.modal-icon {
    font-size: 4rem;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.post-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    padding: 3rem 2.5rem;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-link {
    color: var(--electric-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.back-link:hover {
    gap: 1rem;
}

.post-category {
    background-color: var(--electric-blue);
    color: var(--primary-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-header h1 {
    font-size: 2.8rem;
    color: var(--deep-navy);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.post-info {
    display: flex;
    gap: 2rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.post-featured-image {
    width: 100%;
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.post-content {
    padding: 0 2.5rem 4rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.post-content h2 {
    color: var(--deep-navy);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.3;
}

.post-content p {
    color: var(--medium-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.post-cta {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #0088cc 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    color: var(--primary-white);
}

.post-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-cta p {
    color: var(--primary-white);
    opacity: 0.95;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .hero-content-wrapper,
    .story-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 1.5rem;
    }

    .hero-banner {
        padding: 4rem 1.5rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .process-timeline,
    .pricing-grid,
    .values-grid,
    .team-grid,
    .stats-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
