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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #333333;
    --light-bg: #F8F9FA;
    --border-color: #E1E8ED;
    --success-color: #27AE60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

.ad-disclosure {
    background-color: #FFF3CD;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #FFEAA7;
}

.main-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

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

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

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

.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.intro-section {
    background-color: var(--light-bg);
    padding: 60px 20px;
}

.intro-card {
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.benefits-grid {
    padding: 80px 20px;
}

.benefits-grid h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 56px;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-card {
    flex: 1 1 calc(50% - 12px);
    background-color: #FFFFFF;
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.services-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.services-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 19px);
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 16px;
}

.select-service-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.select-service-btn:hover {
    background-color: #2980B9;
}

.approach-section {
    padding: 80px 20px;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.testimonials-section {
    background-color: var(--primary-color);
    padding: 80px 20px;
    color: #FFFFFF;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    color: #FFFFFF;
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #2980B9);
    color: #FFFFFF;
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-form-section {
    padding: 80px 20px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    border-left: 4px solid var(--success-color);
}

.selected-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.selected-info {
    font-size: 18px;
    color: var(--success-color);
    font-weight: 600;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    background-color: var(--success-color);
    color: #FFFFFF;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    background-color: #FFF8E1;
    padding: 60px 20px;
    border-top: 3px solid #FFC107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.main-footer {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.8;
}

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

.sticky-cta-button {
    display: block;
    background-color: var(--accent-color);
    color: #FFFFFF;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background-color: #C0392B;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.cookie-accept {
    background-color: var(--success-color);
    color: #FFFFFF;
}

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

.cookie-reject {
    background-color: #E0E0E0;
    color: var(--text-color);
}

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

.cookie-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #34495E);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail-section {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.highlight-item {
    background-color: var(--light-bg);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--primary-color);
    border-left: 3px solid var(--secondary-color);
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--success-color);
    margin: 24px 0;
}

.about-intro-section {
    padding: 80px 20px;
}

.about-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.values-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 56px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 14px);
    background-color: #FFFFFF;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 20px;
}

.expertise-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.expertise-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-detail-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.approach-detail-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 56px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}

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

.timeline-content {
    flex: 1;
    padding-bottom: 20px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.detail-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.detail-content p {
    color: #666;
    line-height: 1.7;
}

.no-link-email {
    color: #666;
    font-weight: 500;
}

.contact-note {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-note p {
    color: #666;
    line-height: 1.7;
}

.contact-form-card {
    flex: 1;
}

.contact-form-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.contact-page-form {
    background-color: #FFFFFF;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 28px;
}

.thanks-card h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.selected-service-confirmation {
    background-color: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-confirmation p {
    color: var(--primary-color);
    font-size: 17px;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.steps-grid {
    display: flex;
    gap: 24px;
    text-align: left;
}

.step-item {
    flex: 1;
    background-color: var(--light-bg);
    padding: 28px;
    border-radius: 12px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

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

.legal-content {
    padding: 60px 20px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-text ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-update {
    margin-top: 48px;
    font-style: italic;
    color: #999;
}

.no-link-text {
    color: #666;
}

@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .approach-content {
        flex-direction: column;
    }

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

    .cards-wrapper {
        gap: 20px;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .about-content-split {
        flex-direction: column;
    }

    .values-grid {
        gap: 24px;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .nav-menu a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .cookie-accept,
    .cookie-reject,
    .cookie-link {
        width: 100%;
    }

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

    .sticky-cta-button {
        display: block;
        width: 100%;
        text-align: center;
    }

    .thanks-card {
        padding: 40px 28px;
    }

    .thanks-card h1 {
        font-size: 32px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
