* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A1F2E;
    --secondary: #2E3A52;
    --accent: #FF6B35;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { opacity: 0.8; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-label.center {
    display: block;
    text-align: center;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

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

.center-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.header {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mega-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
}

.mega-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.mega-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.mega-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.7;
    letter-spacing: 1px;
}

.brand-philosophy {
    padding: 100px 0;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.philosophy-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.philosophy-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.approach {
    padding: 100px 0;
    background: var(--light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.approach-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.approach-item h3 {
    margin-bottom: 1rem;
}

.approach-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.services-showcase {
    padding: 100px 0;
}

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

.services-content h2 {
    margin-bottom: 1.5rem;
}

.services-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
    text-align: left;
}

.feature-item {
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.feature-item h4 {
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.portfolio-highlight {
    padding: 100px 0;
    background: var(--light);
}

.portfolio-showcase-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 3rem;
}

.portfolio-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.portfolio-feature:nth-child(even) {
    direction: rtl;
}

.portfolio-feature:nth-child(even) .portfolio-info {
    direction: ltr;
}

.portfolio-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 40px;
}

.portfolio-info h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.portfolio-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.portfolio-info a {
    font-weight: 600;
    font-size: 0.95rem;
}

.why-partner {
    padding: 100px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-card {
    padding: 40px;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.client-results {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.testimonial-item p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.final-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 60px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 35px 0;
}

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

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.privacy-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.privacy-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.privacy-actions a {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.9rem;
}

.privacy-actions button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.privacy-actions button:hover {
    background: #e55a2b;
}

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .mega-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .mega-hero h1 {
        font-size: 2.2rem;
    }
    
    .mega-hero p {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions a {
        width: 100%;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item strong {
        font-size: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 15px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .philosophy-layout,
    .portfolio-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-feature:nth-child(even) {
        direction: ltr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .privacy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mega-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .mega-hero h1 {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 12px 24px;
        font-size: 13px;
    }
}

.services-detailed {
    padding: 100px 0;
}

.service-block {
    max-width: 900px;
    margin: 0 auto 80px;
}

.service-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.pricing {
    padding: 100px 0;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.process {
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.portfolio-full {
    padding: 100px 0;
}

.portfolio-item-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.portfolio-item-large.reverse {
    direction: rtl;
}

.portfolio-item-large.reverse .portfolio-details {
    direction: ltr;
}

.portfolio-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.portfolio-details h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.portfolio-category {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.portfolio-details > p {
    color: var(--text-light);
    line-height: 1.8;
}

.portfolio-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.result-item {
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.result-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.result-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-main {
    padding: 100px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-light);
}

.checkbox-label a {
    text-decoration: underline;
}

.contact-form button {
    width: 100%;
}

.contact-info-wrapper {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-info-card h3 {
    margin-bottom: 2.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 0.95rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.map-section {
    padding: 0 0 100px 0;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

.error-content,
.thankyou-content {
    padding: 100px 0;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.error-box,
.thankyou-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.error-box h1,
.thankyou-box h1 {
    margin-bottom: 1rem;
}

.error-box p,
.thankyou-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.error-actions,
.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-content {
    padding: 100px 0;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-wrapper h1 {
    margin-bottom: 1rem;
}

.policy-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.policy-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.policy-wrapper p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    text-align: justify;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-item-large {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item-large.reverse {
        direction: ltr;
    }
    
    .portfolio-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .error-actions,
    .thankyou-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .error-actions a,
    .thankyou-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}
