/* 
 * Main Stylesheet - Financial Audit Website
 * Custom Design with Flexbox and CSS Animations
 */

:root {
    /* Color Variables */
    --bg-primary: #fdf9f3; /* Milky with microtexture */
    --text-primary: #2d3748; /* Inky gray */
    --accent-blue: #1d4ed8; /* Aquamarine blue */
    --accent-yellow: #ffc800; /* Neon yellow */
    --accent-burgundy: #800020; /* Wine burgundy */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
}

/* Base Styles & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 5rem; /* Header height */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d3748' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    text-align: center; /* Центрируем весь текст */
}

h1, h2, h3, h4, h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center; /* Центрируем заголовки */
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-burgundy);
}

ul, ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    text-align: left; /* Сохраняем списки выровненными по левому краю для читаемости */
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 0 auto; /* Центрируем изображения */
    display: block;
}

section {
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем содержимое секций */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--shadow-light);
    color: var(--accent-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    padding: 2rem;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.mobile-nav-link {
    font-size: 1.2rem;
    padding: 0.8rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* Центрируем содержимое */
    padding: 5rem 1rem;
    overflow: hidden;
    position: relative; /* Для позиционирования фонового изображения */
    text-align: center;
}

/* Добавляем фоновое изображение для hero секции */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/EB8HKB.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Увеличиваем непрозрачность для большей заметности */
    z-index: -1;
    filter: blur(4px); /* Уменьшаем размытие для большей четкости */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    z-index: 1; /* Поверх фонового изображения */
    text-align: center; /* Центрируем текст */
    max-width: 800px; /* Ограничиваем ширину для лучшей читаемости */
    margin: 0 auto; /* Центрируем блок */
    display: flex;
    flex-direction: column;
    align-items: center; /* Дополнительное центрирование */
    justify-content: center; /* Вертикальное центрирование */
}

/* Статический слоган вместо анимированного */
.static-slogan {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem auto 2rem;
    color: var(--accent-blue);
    max-width: 80%;
    text-align: center;
}

.static-slogan p {
    margin: 0;
}

/* Удаляем анимацию
.animated-slogan {
    font-size: 2rem;
    font-weight: 700;
    height: 3rem;
    margin: 1rem auto 2rem;
    position: relative;
    overflow: hidden;
    color: var(--accent-blue);
    max-width: 80%;
}

.animated-slogan span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideAnimation 9s infinite;
}

.animated-slogan span:nth-child(1) {
    animation-delay: 0s;
}

.animated-slogan span:nth-child(2) {
    animation-delay: 3s;
}

.animated-slogan span:nth-child(3) {
    animation-delay: 6s;
}

@keyframes slideAnimation {
    0%, 10% {
        transform: translateY(50px);
        opacity: 0;
    }
    15%, 25% {
        transform: translateY(0);
        opacity: 1;
    }
    30%, 35% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
*/

.cta-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Центрируем кнопку */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-blue));
    margin: 0 auto;
    border-radius: 4px;
}

/* About Section */
.about {
    background-color: rgba(29, 78, 216, 0.03);
    text-align: center;
    padding: 5rem 1rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Новый дизайн блока Über uns */
.about-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    width: 100%;
    max-width: 1000px;
}

.about-image-new {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.about-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.about-card:hover .about-image-new img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem 1.5rem 1rem;
    color: white;
    text-align: left;
}

.about-overlay h3 {
    margin: 0;
    font-size: 1.8rem;
    text-align: left;
    color: white;
}

.about-text-new {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-new h3 {
    color: var(--accent-blue);
    margin-top: 1.5rem;
    text-align: left;
}

.about-text-new p {
    margin-bottom: 1rem;
}

.about-address {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-style: italic;
    color: var(--accent-burgundy);
}

/* Services Section */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin: 0 auto 1.5rem; /* Центрируем иконку */
}

.service-card h3 {
    color: var(--accent-blue);
}

.service-card ul {
    margin: 0 auto 2rem; /* Центрируем список */
    display: inline-block;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-burgundy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price::after {
    content: " €";
}

.service-button {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-burgundy) 100%);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto; /* Центрируем кнопку */
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Workflow Section */
.workflow {
    background-color: rgba(29, 78, 216, 0.03);
}

.workflow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-blue) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.workflow-arrow {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-blue));
    position: relative;
    align-self: center;
}

.workflow-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--accent-blue);
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
    text-align: center;
}

.quote-icon {
    margin: 0 auto 1rem; /* Центрируем иконку */
    display: flex;
    justify-content: center;
}

.testimonial-author {
    font-weight: 700;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем автора */
}

.testimonial-author span:last-child {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

/* Order Form Section */
.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background-color: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left; /* Выравниваем поля формы по левому краю для лучшей читаемости */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.submit-button {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-blue) 100%);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.form-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.form-image img {
    border-radius: 24px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    max-width: 90%;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background-color: white;
    border-radius: 24px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    overflow: hidden;
    text-align: left; /* Для лучшей читаемости */
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question h3 a {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    width: 100%;
}

.faq-question h3 a:hover {
    color: var(--accent-blue);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left; /* Для лучшей читаемости */
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Contact Section */
.contact {
    background-color: rgba(29, 78, 216, 0.03);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item span:first-child {
    font-weight: 600;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Footer Styles */
.site-footer {
    background-color: var(--text-primary);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
    text-align: center;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-button {
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.cookie-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .workflow-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero-content, .hero-image {
        min-width: 100%;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .site-header {
        padding: 0.3rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .animated-slogan {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2rem 0.5rem;
    }
    
    .hero {
        padding: 3rem 0.5rem 1.5rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .workflow-step {
        min-width: 100%;
        margin-bottom: 2rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    .contact-item {
        gap: 0.3rem;
    }
} 