* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-black {
    background: #000;
    color: #fff;
    border: none;
}

.btn-black:hover {
    background: #333;
}

.btn-blue {
    background: #4A90E2;
    color: #fff;
    border: none;
}

.btn-blue:hover {
    background: #357ABD;
}

/* Precision Marketing Section */
.precision-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.precision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.precision-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.precision-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.precision-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 400px;
}

.precision-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 20px 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Precision Delivered Section */
.precision-delivered {
    padding: 80px 0;
    background: #fff;
}

.email-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.email-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.email-form input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: #4A90E2;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #bbb;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #34495e;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-section input[type="email"]:focus {
    outline: none;
    border-color: #4A90E2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 90px);
        background: #fff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-link.active::after {
        display: none;
    }

    .header .container {
        flex-direction: row;
        gap: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .precision-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #fff;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.page-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 25px;
    position: relative;
}

.project-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.project-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s;
}

.project-arrow:hover {
    transform: translateX(5px);
}

/* Detail Section */
.detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 35px;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.detail-image {
    border-radius: 10px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: #fff;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.approach-image-large {
    grid-column: 1 / 2;
    border-radius: 10px;
    overflow: hidden;
}

.approach-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-image-small {
    grid-column: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
    align-self: center;
}

.approach-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Audit Services Section */
.audit-services-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.audit-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.audit-service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.audit-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audit-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.audit-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audit-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 20px 10px;
}

.audit-service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-hero {
    background-color: #fff;
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 16px;
    color: #666;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    z-index: 3;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ccc;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.contact-form .btn-dark {
    background-color: #4A90E2;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.contact-form .btn-dark:hover {
    background-color: #357ABD;
}

.contact-image-side {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    left: 50%;
    position: absolute;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    padding-bottom: 100px;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-image-bg {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.contact-image-bg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.contact-image {
    margin-top: 40px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 300px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive for Strategic Audit */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .detail-content,
    .approach-content {
        grid-template-columns: 1fr;
    }

    .audit-services-grid {
        grid-template-columns: 1fr;
    }

    .approach-images {
        grid-template-columns: 1fr;
    }

    /* Contact Form Mobile */
    .contact-hero {
        padding: 50px 0 !important;
    }

    .contact-wrapper {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding-bottom: 0 !important;
    }

    .contact-info {
        display: block !important;
        order: 1 !important;
        margin-bottom: 30px !important;
    }

    .contact-info h1 {
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }

    .contact-info p {
        font-size: 16px !important;
        color: #999 !important;
    }

    .contact-form-wrapper {
        background: #fff !important;
        padding: 40px 20px !important;
        border-radius: 20px !important;
        box-shadow: none !important;
        margin-bottom: 0px !important;
        order: 2 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-form .form-group {
        margin-bottom: 20px !important;
    }

    .contact-form label {
        font-size: 16px !important;
        color: #333 !important;
        margin-bottom: 10px !important;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        padding: 16px 20px !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 12px !important;
        font-size: 15px !important;
        background: #fff !important;
    }

    .contact-form textarea {
        min-height: 140px !important;
        resize: none !important;
    }

    .contact-form .btn-dark {
        width: 100% !important;
        padding: 18px !important;
        border-radius: 50px !important;
        background-color: #2d3e5f !important;
        font-size: 16px !important;
    }

    .contact-image-bg {
        position: relative !important;
        bottom: 0 !important;
        margin-top: -60px !important;
        z-index: 1 !important;
        order: 3 !important;
        overflow: visible !important;
        height: auto !important;
    }

    .contact-image-bg img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        border-radius: 20px !important;
        object-position: center 30% !important;
    }
}


/* Performance Marketing Page */
.performance-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.performance-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.performance-card {
    position: relative;
    border-radius: 10px;
    overflow: visible;
}

.performance-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.performance-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.performance-card-content {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    padding: 25px 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.performance-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.performance-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies-section {
    padding: 120px 0 80px;
    background: #fff;
}

.case-study-item {
    margin-top: 60px;
}

.case-study-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.case-study-image-left,
.case-study-image-right {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.case-study-image-left img,
.case-study-image-right img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 15px;
    font-size: 13px;
    line-height: 1.4;
}

.case-study-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
}

/* Campaign Section */
.campaign-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.campaign-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.campaign-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.campaign-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.campaign-image-wrapper {
    position: relative;
}

.campaign-image {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.campaign-testimonial {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: #999;
}

/* Responsive Performance Marketing */
@media (max-width: 768px) {
    .performance-cards {
        grid-template-columns: 1fr;
    }

    .case-study-item {
        grid-template-columns: 1fr;
    }

    .case-study-images {
        grid-template-columns: 1fr;
    }

    .campaign-content {
        grid-template-columns: 1fr;
    }

    .campaign-testimonial {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}


.case-study-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 20px;
}

.case-study-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    margin-right: auto;
}


/* Content Precision Page */
.detail-hero {
    padding: 80px 0;
    background: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.detail-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.detail-image-large {
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.detail-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Precision Section */
.content-precision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-precision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.content-precision-image {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.content-precision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.precision-item {
    margin-bottom: 30px;
}

.precision-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.precision-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Contact Wrapper Content */
.contact-wrapper-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-side {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 0 0 0 20px;
    z-index: 2;
}

.contact-image-bottom {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-top: 0;
}

.contact-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Content Precision */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .content-precision-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper-content {
        grid-template-columns: 1fr;
    }

    .contact-image-bottom {
        margin-top: 20px;
    }
}


/* Complete Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Page Titles */
    .page-title {
        font-size: 32px !important;
    }

    .page-subtitle {
        font-size: 14px !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 28px !important;
    }

    .section-subtitle {
        font-size: 14px !important;
    }

    /* Precision Section */
    .precision-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .precision-image {
        height: 300px !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Performance Cards */
    .performance-cards {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .performance-card {
        margin-bottom: 40px !important;
    }

    /* Case Studies */
    .case-study-images {
        grid-template-columns: 1fr !important;
    }

    .case-study-image-left,
    .case-study-image-right {
        height: 220px !important;
    }

    .case-study-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .case-study-content h3 {
        font-size: 24px !important;
    }

    /* Campaign Section */
    .campaign-content {
        grid-template-columns: 1fr !important;
    }

    .campaign-text h2 {
        font-size: 32px !important;
    }

    .campaign-image {
        height: 300px !important;
    }

    .campaign-testimonial {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 20px !important;
    }

    /* Detail Section */
    .detail-content {
        grid-template-columns: 1fr !important;
    }

    .detail-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .detail-image-large {
        height: 250px !important;
    }

    /* Content Precision Grid */
    .content-precision-grid {
        grid-template-columns: 1fr !important;
    }

    .content-precision-image {
        height: 300px !important;
    }

    /* Contact Wrapper */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }

    .contact-wrapper-content {
        grid-template-columns: 1fr !important;
    }

    .contact-image-side,
    .contact-image-bottom {
        height: 300px !important;
        margin-top: 20px !important;
    }

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr !important;
    }

    /* Approach Section */
    .approach-content {
        grid-template-columns: 1fr !important;
    }

    .approach-images {
        grid-template-columns: 1fr !important;
    }

    /* Audit Services */
    .audit-services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Buttons */
    .btn {
        width: 100% !important;
        text-align: center !important;
    }

    .btn-outline {
        width: auto !important;
    }

    /* Logo */
    .logo img {
        height: 50px !important;
    }

    /* Container Padding */
    .container {
        padding: 0 15px !important;
    }

    /* Section Padding */
    section {
        padding: 60px 0 !important;
    }

    .performance-hero,
    .detail-hero,
    .projects-section,
    .case-studies-section,
    .campaign-section,
    .content-precision-section,
    .precision-section,
    .services-section,
    .precision-delivered,
    .detail-section,
    .approach-section,
    .audit-services-section {
        padding: 60px 0 !important;
    }
}

