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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba0;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 1.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-brand h2 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
    display: block;
    font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

.hero-split,
.trust-section,
.service-detailed,
.value-proposition,
.form-section,
.about-hero,
.values-split,
.services-highlight,
.contact-info-section,
.directions-section {
    display: flex;
    min-height: 500px;
}

.hero-split {
    min-height: 600px;
    align-items: center;
}

.hero-left,
.hero-right,
.trust-left,
.trust-right,
.service-detail-left,
.service-detail-right,
.value-left,
.value-right,
.form-left,
.form-right,
.about-hero-left,
.about-hero-right,
.values-left,
.values-right,
.services-left,
.services-right,
.contact-info-left,
.contact-info-right,
.directions-left,
.directions-right {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

.hero-right img,
.trust-left img,
.trust-right img,
.service-detail-right img,
.service-detail-left img,
.value-left img,
.value-right img,
.about-hero-right img,
.values-left img,
.services-right img,
.contact-info-right img,
.directions-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary,
.cta-large,
.btn-submit,
.btn-service,
.sticky-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-primary:hover,
.cta-large:hover,
.btn-submit:hover,
.btn-service:hover,
.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.trust-section {
    background: var(--bg-light);
}

.trust-left {
    padding: 0;
}

.trust-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h2,
.service-detail-right h2,
.service-detail-left h2,
.value-right h2,
.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-right p,
.service-detail-right p,
.service-detail-left p,
.value-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.cta-inline {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.problem-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.problem-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detailed {
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-left img,
.service-detail-right img {
    padding: 0;
}

.service-detail-left,
.service-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price,
.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.testimonial-section {
    padding: 5rem 3rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonial-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    text-align: right;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.form-section {
    background: var(--bg-light);
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.8rem 1.2rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.why-choose {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    text-align: center;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    background: var(--accent-color);
}

.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 3rem 1.5rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

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

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: block;
    padding: 0.3rem 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-btn {
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.team-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-section {
    padding: 5rem 3rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.stats-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.story-section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.services-hero {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.packages-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.packages-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.packages-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

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

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.popular-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.package-card li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
}

.package-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-top: 1.5rem;
}

.contact-hero {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.transit-list {
    list-style: none;
    margin: 1rem 0;
}

.transit-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.faq-contact-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.faq-contact-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ready-section {
    padding: 5rem 3rem;
    background: var(--bg-white);
    text-align: center;
}

.ready-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ready-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 3rem;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 2;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-selected {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.15rem;
}

.confirmation-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.resources-card,
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-card h3,
.resources-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-email a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

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

.resource-list li {
    margin-bottom: 0.8rem;
}

.resource-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

.resource-list a:hover {
    text-decoration: underline;
}

.quote-small {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.author-small {
    font-weight: 600;
    text-align: right;
    font-size: 0.95rem;
}

.legal-page {
    padding: 0;
}

.legal-header {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.legal-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.updated {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
        width: calc(100% - 220px);
    }

    .hero-left h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }

    .nav-brand h2 {
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-split,
    .trust-section,
    .service-detailed,
    .value-proposition,
    .form-section,
    .about-hero,
    .values-split,
    .services-highlight,
    .contact-info-section,
    .directions-section {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .trust-left,
    .trust-right,
    .service-detail-left,
    .service-detail-right,
    .value-left,
    .value-right,
    .form-left,
    .form-right,
    .about-hero-left,
    .about-hero-right,
    .values-left,
    .values-right,
    .services-left,
    .services-right,
    .contact-info-left,
    .contact-info-right,
    .directions-left,
    .directions-right {
        padding: 2rem 1.5rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .problem-grid,
    .features-grid,
    .team-grid,
    .stats-wrapper,
    .packages-grid,
    .faq-grid {
        flex-direction: column;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-left h1,
    .services-hero-content h1,
    .contact-hero h1 {
        font-size: 1.7rem;
    }

    .cta-primary,
    .cta-large,
    .btn-submit,
    .btn-service {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}
