/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D84315;
    --primary-dark: #BF360C;
    --primary-light: #E64A19;
    --bg-light: #F5F3F0;
    --bg-gray: #E8E4DF;
    --bg-gray-dark: #D9D4CE;
    --text-dark: #2C2418;
    --text-gray: #5C5247;
    --text-light-gray: #8B7F70;
    --card-bg: #FFFFFF;
    --border-color: #D4CEC4;
    --shadow: rgba(44, 36, 24, 0.1);
    --shadow-hover: rgba(216, 67, 21, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F5F3F0;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #E8D5C9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.header.loaded {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0.15s;
}

.header.loaded .nav-menu {
    opacity: 1;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF6B35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0.1s;
    background: transparent !important;
}

.header.loaded .logo {
    opacity: 1;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Logo styling for white navbar */
.header .logo-image {
    mix-blend-mode: normal;
    filter: none;
    background: transparent !important;
}

/* Ensure logo container has no background */
.header .logo {
    background: transparent !important;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0.2s;
}

.header.loaded .header-right {
    opacity: 1;
}

.trustpilot-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.trustpilot-widget:hover {
    text-decoration: none;
}

.trustpilot-widget.no-underline::after {
    display: none !important;
}

.stars {
    color: #00b67a;
    font-size: 18px;
    letter-spacing: 2px;
}

.trustpilot-text {
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.5);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #E8E4DF 0%, #D9D4CE 100%);
    padding: 100px 20px;
    text-align: left;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero/jimmy-nilsson-masth-UovTD1dG-lA-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    will-change: opacity;
}

.hero.loaded .hero-background {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 36, 24, 0.5);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #F5F3F0;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #D4CEC4;
    box-shadow: 0 2px 8px rgba(44, 36, 24, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    content-visibility: auto;
    contain-intrinsic-size: auto 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(216, 67, 21, 0.25);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Reviews */
.reviews {
    background-color: #E8E4DF;
}

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

.review-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #D4CEC4;
    box-shadow: 0 2px 8px rgba(44, 36, 24, 0.1);
    content-visibility: auto;
    contain-intrinsic-size: auto 200px;
}

.review-stars {
    color: #00b67a;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    color: var(--text-light-gray);
    font-weight: 500;
}

.trustpilot-rating {
    text-align: center;
    margin-top: 40px;
}

.rating-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rating-stars {
    color: #00b67a;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.rating-source {
    color: var(--text-gray);
    font-size: 16px;
}

/* How It Works */
.how-it-works {
    background-color: #F5F3F0;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.how-it-works-image {
    width: 100%;
}

.how-it-works-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px var(--shadow);
}

.placeholder-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #E8E4DF;
    border: 1px solid #D4CEC4;
}

.placeholder-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.placeholder-image svg rect {
    fill: var(--bg-gray);
}

.placeholder-image svg text {
    fill: var(--text-gray);
}

.how-it-works-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.process-steps {
    margin-bottom: 30px;
}

.process-step {
    margin-bottom: 30px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #D84315;
}

.step-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* References */
.references {
    background-color: #F5F3F0;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.reference-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #D4CEC4;
    box-shadow: 0 2px 8px rgba(44, 36, 24, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(216, 67, 21, 0.25);
}

.reference-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #E8E4DF;
}

.reference-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #E8E4DF;
    cursor: pointer;
    position: relative;
}

.reference-image::after {
    content: '🔍 Klikk for å forstørre';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.reference-image:hover::after {
    opacity: 1;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.reference-content {
    padding: 24px;
}

.reference-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reference-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Image Modal/Lightbox */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: scaleIn 0.3s ease;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.image-modal-close:hover {
    background: white;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Services */
.services {
    background-color: #E8E4DF;
}

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

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #D4CEC4;
    box-shadow: 0 2px 8px rgba(44, 36, 24, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(216, 67, 21, 0.25);
    border-color: var(--primary-light);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #E8E4DF;
}

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

.service-image svg {
    width: 100%;
    height: 100%;
}

.service-icon-wrapper {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F3F0;
    border-bottom: 1px solid #D4CEC4;
}

.service-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    stroke-width: 2;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-text {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 24px 24px;
    line-height: 1.6;
}

/* About */
.about {
    background-color: #F5F3F0;
}

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

.about-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

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

.team-stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #D84315;
    margin-bottom: 8px;
}

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

/* FAQ */
.faq {
    background-color: #E8E4DF;
}

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

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D4CEC4;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(44, 36, 24, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background-color: #F5F3F0;
    color: #D84315;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #D84315;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact */
.contact {
    background-color: #F5F3F0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.contact-image {
    width: 100%;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #D84315;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background-color: #FFFFFF;
    border: 2px solid #D4CEC4;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D84315;
    box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.15);
}

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

/* Footer */
.footer {
    background-color: #D9D4CE;
    padding: 60px 20px 30px;
    border-top: 2px solid #C4BDB5;
}

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

.footer-section {
    color: var(--text-gray);
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #D84315;
    margin-bottom: 16px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-text a:hover {
    color: #BF360C;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #C4BDB5;
    color: var(--text-light-gray);
    font-size: 14px;
}

.developer-credit {
    margin-top: 12px;
    color: var(--text-light-gray);
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E8E4DF 0%, #D9D4CE 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 24px 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
    font-size: 15px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #D84315 0%, #BF360C 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--bg-light);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-light);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background-color: var(--bg-light);
    color: #D84315;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #D84315;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E4DF;
    border-radius: 8px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-detail-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-detail-text a {
    color: #D84315;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: #BF360C;
    text-decoration: underline;
}

/* About Main */
.about-main {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-main .section-title {
    margin-bottom: 30px;
}

.about-main .about-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .how-it-works-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .how-it-works-image {
        order: -1;
    }

    .contact-image {
        order: -1;
    }

    .header-right {
        flex-wrap: wrap;
    }

    .trustpilot-widget {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 60px 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .team-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }
}
