:root {
    --clr-bg: #FFFFFF;
    --clr-surface: #F7F7F7;
    --clr-text: #1A1A1A;
    --clr-muted: #555555;
    --clr-accent: #E63946;
    --clr-accent-2: #457B9D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--clr-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    color: var(--clr-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: var(--clr-text);
    transition: all 0.3s ease;
}

.menu-close {
    display: none;
    text-align: right;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text);
    cursor: pointer;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--clr-accent);
}

.close-btn i {
    width: 24px;
    height: 24px;
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--clr-accent-2) 0%, var(--clr-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--clr-accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--clr-accent-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--clr-accent);
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--clr-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--clr-surface);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--clr-accent);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.service-card p {
    color: var(--clr-muted);
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--clr-surface);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--clr-muted);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.testimonials {
    background-color: var(--clr-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--clr-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-muted);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--clr-text);
}

.cta-section {
    background: linear-gradient(135deg, var(--clr-accent-2) 0%, var(--clr-accent) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.split-section > div {
    min-width: 0;
}

.split-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background-color: var(--clr-surface);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--clr-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--clr-surface);
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--clr-accent);
}

.footer {
    background-color: var(--clr-text);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--clr-accent);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.error-page {
    text-align: center;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-page h1 {
    font-size: 4rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.25rem;
    color: var(--clr-muted);
    margin-bottom: 2rem;
}

.thanks-page {
    text-align: center;
    padding: 5rem 0;
    min-height: 60vh;
}

.thanks-image {
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--clr-bg);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-close {
        display: block;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:first-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--clr-accent);
}

.stats-section {
    background: linear-gradient(135deg, var(--clr-accent-2) 0%, var(--clr-accent) 100%);
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.process-section {
    padding: 5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--clr-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.three-column img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--clr-text);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--clr-muted);
    line-height: 1.8;
}

.vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-top: 3rem;
}

.vertical-layout img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.asymmetric-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.asymmetric-layout.reverse {
    grid-template-columns: 1fr 2fr;
}

.asymmetric-layout img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.masonry-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.masonry-item {
    background-color: var(--clr-surface);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.masonry-item:nth-child(odd) {
    grid-row: span 2;
}

.stacked-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stacked-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background-color: var(--clr-surface);
    border-radius: 10px;
}

.stacked-item img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .three-column {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 2rem 1rem;
    }

    .asymmetric-layout,
    .asymmetric-layout.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .masonry-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .masonry-item:nth-child(odd) {
        grid-row: span 1;
    }

    .stacked-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .stacked-item img {
        max-width: 200px;
        margin: 0 auto 1rem;
    }

    .vertical-layout {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.25rem;
    }
}

@media (max-width: 320px) {
    * {
        box-sizing: border-box !important;
    }

    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }

    .nav-container {
        padding: 0 10px !important;
    }

    .logo {
        font-size: 1rem !important;
    }

    .burger {
        gap: 3px !important;
    }

    .burger span {
        width: 20px !important;
        height: 2px !important;
    }

    .nav-menu {
        top: 0 !important;
        padding: 0 !important;
    }

    .nav-menu li {
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 0 !important;
    }

    .menu-close {
        padding: 0.75rem 1rem !important;
    }

    .close-btn {
        font-size: 1.25rem !important;
        padding: 0.25rem !important;
    }

    .close-btn i {
        width: 20px !important;
        height: 20px !important;
    }

    .hero {
        height: 350px !important;
        min-height: 350px !important;
        padding: 2rem 0 !important;
    }

    .hero-content {
        padding: 0 10px !important;
        max-width: 100% !important;
    }

    .hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }

    .hero p {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    .hero-banner {
        display: none !important;
    }

    .section {
        padding: 2rem 0 !important;
    }

    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .features-grid,
    .process-grid,
    .gallery-grid,
    .three-column {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .service-card,
    .product-card,
    .testimonial-card,
    .feature-item,
    .process-item,
    .masonry-item {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .service-card h3,
    .product-info h3,
    .feature-item h3,
    .process-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service-card p,
    .product-info p,
    .feature-item p,
    .process-item p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .service-icon,
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.75rem !important;
    }

    .product-image {
        height: 180px !important;
        width: 100% !important;
    }

    .gallery-item img {
        height: 200px !important;
        width: 100% !important;
    }

    .split-section {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .split-image {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 1rem !important;
    }

    .asymmetric-layout,
    .asymmetric-layout.reverse {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .asymmetric-layout h2,
    .asymmetric-layout h3 {
        font-size: 1.25rem !important;
    }

    .asymmetric-layout p {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }

    .stacked-layout {
        gap: 1rem !important;
    }

    .stacked-item {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
        text-align: center !important;
    }

    .stacked-item img {
        max-width: 100px !important;
        height: auto !important;
        margin: 0 auto 0.75rem !important;
    }

    .stacked-item h3 {
        font-size: 1.1rem !important;
    }

    .stacked-item p {
        font-size: 0.85rem !important;
    }

    .vertical-layout {
        gap: 1rem !important;
    }

    .vertical-layout img {
        max-width: 100% !important;
        height: auto !important;
    }

    .masonry-layout {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 1rem !important;
    }

    .masonry-item {
        padding: 1rem !important;
    }

    .masonry-item img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 0.75rem !important;
    }

    .stats-section {
        padding: 2rem 0 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .stat-item h3 {
        font-size: 2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .stat-item p {
        font-size: 0.85rem !important;
    }

    .process-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .process-item h3 {
        font-size: 1.1rem !important;
    }

    .process-item p {
        font-size: 0.85rem !important;
    }

    .price {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }

    .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.5px !important;
        width: auto !important;
        display: inline-block !important;
    }

    .btn-secondary {
        padding: 0.625rem 1.25rem !important;
    }

    .cta-section {
        padding: 2.5rem 0 !important;
    }

    .cta-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .cta-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-form {
        padding: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    .contact-form h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .form-group {
        margin-bottom: 1rem !important;
    }

    .form-group label {
        font-size: 0.9rem !important;
        margin-bottom: 0.375rem !important;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.625rem !important;
        font-size: 0.9rem !important;
    }

    .form-group textarea {
        min-height: 120px !important;
    }

    .checkbox-group {
        gap: 0.375rem !important;
        margin-bottom: 1rem !important;
    }

    .checkbox-group label {
        font-size: 0.85rem !important;
    }

    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }

    .contact-item {
        padding: 1.25rem !important;
    }

    .contact-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-item p {
        font-size: 0.85rem !important;
    }

    .contact-item i {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 0.75rem !important;
    }

    .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .testimonial-author {
        font-size: 0.8rem !important;
    }

    .footer {
        padding: 2rem 0 1rem !important;
        margin-top: 3rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .footer-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem !important;
        margin-bottom: 0.375rem !important;
    }

    .footer-bottom {
        padding-top: 1.5rem !important;
    }

    .footer-bottom p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }

    .legal-content {
        padding: 1.5rem 0.75rem !important;
    }

    .legal-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .legal-content h2 {
        font-size: 1.1rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .legal-content p {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.6 !important;
    }

    .legal-content ul {
        margin-left: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .legal-content li {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    .error-page {
        padding: 3rem 0 !important;
        min-height: 50vh !important;
    }

    .error-page h1 {
        font-size: 3rem !important;
        margin-bottom: 0.75rem !important;
    }

    .error-page p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .thanks-page {
        padding: 3rem 0 !important;
        min-height: 50vh !important;
    }

    .thanks-page h1 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .thanks-page p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .thanks-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 1rem auto !important;
    }

    .centered-content {
        padding: 0 10px !important;
    }

    .centered-content h3 {
        font-size: 1.1rem !important;
    }

    .centered-content p {
        font-size: 0.85rem !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    p, span, a, li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

