* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.header-split {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e40af;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e3a8a;
}

.cta-secondary {
    display: inline-block;
    background-color: #64748b;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #475569;
}

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.value-left {
    flex: 1;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.value-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-right h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
}

.value-right p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
}

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 40px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    margin: 0 24px 16px;
}

.service-card .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin: 16px 24px 24px;
}

.services-cta {
    text-align: center;
}

.services-cta a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.services-cta a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.technology-insight {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f1f5f9;
}

.insight-content {
    flex: 1;
    padding: 80px 60px;
}

.insight-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
}

.insight-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 18px;
}

.insight-content a {
    color: #1e40af;
    text-decoration: none;
}

.insight-content a:hover {
    text-decoration: underline;
}

.insight-visual {
    flex: 1;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-form {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 80px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.consultation-form h2 {
    font-size: 36px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 12px;
}

.consultation-form > p {
    text-align: center;
    color: #64748b;
    font-size: 17px;
    margin-bottom: 40px;
}

.form-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.form-column {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.form-split label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-split input,
.form-split select,
.form-split textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-split input:focus,
.form-split select:focus,
.form-split textarea:focus {
    outline: none;
    border-color: #1e40af;
}

.submit-btn {
    width: 100%;
    background-color: #1e40af;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e3a8a;
}

.trust-indicators {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.trust-indicators h3 {
    font-size: 28px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item strong {
    font-size: 48px;
    color: #1e40af;
    display: block;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 16px;
    color: #64748b;
}

.footer-split {
    background-color: #1e293b;
    color: #e2e8f0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-section .references {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    background-color: #0f172a;
    padding: 24px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #64748b;
    max-width: 1000px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #1e40af;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e3a8a;
}

.cookie-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.cookie-reject:hover {
    background-color: #334155;
}

.about-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-image {
    flex: 1;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.about-content h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-section {
    background-color: #1e40af;
    color: #ffffff;
    padding: 80px 40px;
}

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

.mission-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.approach-text {
    flex: 1;
    padding: 60px 80px;
}

.approach-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    font-size: 17px;
    color: #334155;
    padding: 12px 0 12px 32px;
    position: relative;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.approach-image {
    flex: 1;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

.team-expertise {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-expertise h2 {
    font-size: 40px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 16px;
}

.expertise-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 40px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
}

.values-split {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 300px;
}

.value-item h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.cta-about {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f1f5f9;
    border-radius: 12px;
}

.cta-about h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 32px;
}

.services-header {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 20px;
    color: #64748b;
}

.service-detail {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

.service-info {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-info ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-info ul li {
    font-size: 16px;
    color: #334155;
    padding: 10px 0 10px 28px;
    position: relative;
}

.service-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.price-box {
    background-color: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #64748b;
}

.services-cta-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #1e293b;
    color: #ffffff;
    border-radius: 12px;
}

.services-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.services-cta-section p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.contact-header {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 20px;
    color: #64748b;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.contact-info {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8fafc;
}

.contact-info h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.email-text {
    font-weight: 600;
    color: #1e293b;
}

.contact-visual {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
}

.contact-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
    margin-bottom: 32px;
}

.contact-additional h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
}

.departments-list {
    list-style: none;
}

.departments-list li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.6;
}

.location-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.location-info h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
}

.location-split {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 16px;
}

.parking-header {
    margin-top: 28px;
}

.location-text p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.location-note {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 8px;
}

.location-note p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.thanks-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-confirmation {
    font-weight: 600;
    color: #1e40af;
    margin-top: 8px;
    min-height: 24px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e3a8a;
}

.btn-secondary {
    background-color: transparent;
    color: #1e40af;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #1e40af;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.thanks-info {
    flex: 1;
    background-color: #f8fafc;
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-info h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 28px;
}

.next-steps {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    font-size: 17px;
    color: #475569;
    padding: 16px 0 16px 48px;
    position: relative;
    line-height: 1.6;
    counter-increment: steps;
}

.next-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 16px;
    background-color: #1e40af;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-additional {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-additional h2 {
    font-size: 36px;
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
}

.additional-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.additional-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.additional-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.additional-card a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.additional-card a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1e293b;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #334155;
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1e40af;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e3a8a;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-proposition,
    .about-split,
    .approach-split,
    .service-detail,
    .contact-split,
    .technology-insight,
    .thanks-container {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-content,
    .value-right,
    .about-content,
    .approach-text,
    .service-info,
    .contact-info,
    .contact-visual,
    .insight-content {
        padding: 40px 32px;
    }

    .services-grid,
    .expertise-grid {
        flex-direction: column;
    }

    .service-card,
    .expertise-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1,
    .about-hero h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .value-right h2,
    .about-content h2,
    .approach-text h2,
    .service-info h2 {
        font-size: 28px;
    }

    .form-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}