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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f5f5f7;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.03" width="100" height="100" x="50" y="50"/><rect fill="%23ffffff" opacity="0.05" width="150" height="150" x="800" y="300"/><circle fill="%23ffffff" opacity="0.04" cx="300" cy="400" r="80"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.intro-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.intro-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cards-grid {
    padding: 5rem 0;
    background: var(--white);
}

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

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

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.service-header {
    margin-bottom: 1.5rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-top: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.btn-select-service {
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: scale(1.02);
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-cta:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

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

.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-card-main {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
    border-left: 6px solid var(--highlight-color);
}

.trust-card-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-card-main p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.process-cards {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

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

.process-card {
    flex: 1 1 calc(25% - 1.5rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    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-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.form-section {
    padding: 5rem 0;
    background: var(--white);
}

.form-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
}

.btn-submit {
    padding: 1.2rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.cta-card {
    text-align: center;
    padding: 2rem;
}

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

.cta-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-col {
    flex: 1 1 calc(33.333% - 2rem);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #d63851;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-dark);
}

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

.btn-cookie {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--highlight-color);
    color: var(--white);
}

.btn-cookie:hover {
    background: #d63851;
}

.btn-cookie.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-cookie.btn-secondary:hover {
    background: var(--light-bg);
}

.page-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.about-intro,
.services-detailed,
.contact-section,
.faq-section,
.emergency-section,
.pricing-info,
.equipment-section,
.philosophy-section,
.values-cards,
.cta-section {
    padding: 4rem 0;
}

.about-card-large,
.service-card-detailed,
.contact-info-card,
.equipment-card,
.philosophy-card,
.info-card,
.emergency-card,
.cta-card-centered {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.about-card-large h2,
.service-card-detailed h2,
.equipment-card h2,
.philosophy-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-card-large p,
.equipment-card p,
.philosophy-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.expertise-card,
.value-card,
.faq-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

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

.expertise-card p,
.value-card p,
.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.equipment-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.equipment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.values-grid,
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-header-detailed {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-category {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

.service-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-card,
.contact-map-placeholder {
    flex: 1 1 calc(50% - 1.5rem);
}

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

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-item a:hover {
    color: var(--highlight-color);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.map-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

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

.map-card ul {
    list-style: none;
}

.map-card ul li {
    padding: 0.6rem 0;
    color: var(--text-light);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

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

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.cookie-table td {
    color: var(--text-light);
}

.thanks-hero {
    padding: 5rem 0;
    background: var(--light-bg);
}

.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-details,
.thanks-info,
.thanks-cta {
    padding: 4rem 0;
}

.details-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

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

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card-small {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

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

.info-card-small p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-card-small strong {
    color: var(--text-dark);
}

.cta-card-simple {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-simple h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
    background: var(--light-bg);
}

.legal-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .feature-card,
    .service-card,
    .process-card,
    .expertise-card,
    .value-card,
    .faq-card,
    .info-item,
    .info-card-small,
    .contact-info-card,
    .contact-map-placeholder {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .intro-card,
    .form-card,
    .trust-card-main {
        padding: 2rem;
    }

    .section-title,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }
}