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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: #2c3e50;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
}

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

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem;
}

.hero-magazine {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #34495e;
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    padding: 3rem;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 600px;
}

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

.featured-card {
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.featured-card p {
    color: #555;
}

.stat-box {
    background-color: #f39c12;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.intro-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-story p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.magazine-columns {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.column-layout {
    display: flex;
    gap: 3rem;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
}

.story-block {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.story-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 1.5rem 0;
}

.story-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-block blockquote {
    border-left: 4px solid #f39c12;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.3rem;
    color: #2c3e50;
}

.sidebar-box {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sidebar-box li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f39c12;
}

.quote-box {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-top: 4px solid #f39c12;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.quote-box cite {
    font-size: 0.9rem;
    color: #777;
}

.cta-sidebar {
    background-color: #f39c12;
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.cta-sidebar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-sidebar p {
    margin-bottom: 1.5rem;
}

.btn-sidebar {
    display: inline-block;
    background-color: #ffffff;
    color: #f39c12;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.insight-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #f39c12;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem;
}

.service-header h3 {
    font-size: 1.6rem;
}

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-content ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-service {
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.order-form {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: #f39c12;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: #f39c12;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.final-cta {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.btn-cta {
    display: inline-block;
    background-color: #f39c12;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #bbb;
}

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

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

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

.footer-col a:hover {
    color: #f39c12;
}

.footer-references {
    background-color: #2c3e50;
    padding: 2rem;
    margin-bottom: 2rem;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-references p {
    color: #ddd;
    font-size: 0.9rem;
}

.footer-references a {
    color: #f39c12;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    background-color: #2c3e50;
    padding: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #f39c12;
    text-decoration: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #f39c12;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #e67e22;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.about-hero,
.services-hero,
.contact-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.value-card p {
    color: #555;
    line-height: 1.8;
}

.team-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.team-member p {
    margin: 0 1.5rem 1.5rem;
    color: #555;
}

.team-member p:first-of-type {
    color: #f39c12;
    font-weight: 600;
}

.stats-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 1.1rem;
    color: #555;
}

.services-detail {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.info-note {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-top: 2rem;
}

.info-note p {
    color: #555;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.map-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-service {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-service strong {
    color: #f39c12;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.thanks-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #f39c12;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.thanks-support {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.thanks-support p {
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-support strong {
    color: #2c3e50;
}

.legal-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.8;
}

.legal-content a {
    color: #f39c12;
    text-decoration: none;
}

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

.legal-content strong {
    color: #2c3e50;
}

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

    .hamburger {
        display: flex;
    }

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

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .column-layout {
        flex-direction: column;
    }

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

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

    .service-card {
        max-width: 100%;
    }

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

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

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

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

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

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 2rem;
    }

    .thanks-content {
        padding: 2rem;
    }

    .thanks-content h1 {
        font-size: 1.8rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}