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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2C3E50;
    background-color: #FFFFFF;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #FFFFFF;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #3498DB;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.btn-cookie-accept {
    background-color: #27AE60;
    color: #FFFFFF;
}

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #2C3E50;
}

.main-nav a:hover {
    color: #3498DB;
}

.ad-label {
    font-size: 12px;
    color: #7F8C8D;
    border: 1px solid #BDC3C7;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #F8F9FA;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background-color: transparent;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #F8F9FA;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2C3E50;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #34495E;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.btn-primary {
    background-color: #3498DB;
    color: #FFFFFF;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498DB;
    border: 2px solid #3498DB;
}

.btn-secondary:hover {
    background-color: #3498DB;
    color: #FFFFFF;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.intro-content-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.intro-content-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495E;
}

/* Services Preview Section */
.services-preview {
    padding: 90px 0;
    background-color: #F8F9FA;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2C3E50;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2C3E50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 400px;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495E;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 20px;
}

/* Form Section Split */
.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-left-content,
.form-right-content {
    flex: 1;
    padding: 80px 60px;
}

.form-left-content {
    background-color: #2C3E50;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.form-left-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background-color: #27AE60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.form-right-content {
    background-color: #F8F9FA;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 550px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #BDC3C7;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
}

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

.form-group textarea {
    resize: vertical;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.trust-content-centered h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C3E50;
}

.trust-content-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495E;
}

.trust-content-centered a {
    color: #3498DB;
    text-decoration: underline;
}

.trust-content-centered a:hover {
    color: #2980B9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background-color: #F8F9FA;
}

.testimonials-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495E;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7F8C8D;
}

/* CTA Section Inline */
.cta-section-inline {
    padding: 80px 0;
    background-color: #3498DB;
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-section-inline .btn-primary {
    background-color: #FFFFFF;
    color: #3498DB;
}

.cta-section-inline .btn-primary:hover {
    background-color: #ECF0F1;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: #2C3E50;
    color: #ECF0F1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 calc(25% - 40px);
    min-width: 200px;
}

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

.footer-column p {
    line-height: 1.7;
    color: #BDC3C7;
}

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

.footer-column ul li a {
    color: #BDC3C7;
}

.footer-column ul li a:hover {
    color: #3498DB;
}

.footer-disclaimer {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #ECF0F1;
}

.footer-references {
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-references ol {
    list-style-position: inside;
    list-style-type: decimal;
}

.footer-references ol li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-references ol li a {
    color: #3498DB;
    text-decoration: underline;
}

.footer-references ol li a:hover {
    color: #5DADE2;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #BDC3C7;
}

/* Page Hero Minimal */
.page-hero-minimal {
    padding: 80px 0 60px;
    background-color: #F8F9FA;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.hero-subtitle {
    font-size: 20px;
    color: #7F8C8D;
}

/* About Content Split */
.about-content-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    align-items: center;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left {
    padding: 0 40px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

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

.about-right {
    padding: 0 40px;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C3E50;
}

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

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(50% - 35px);
    min-width: 280px;
    max-width: 550px;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495E;
}

/* Team Section Alternate */
.team-section-alternate {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.team-intro p {
    font-size: 18px;
    color: #7F8C8D;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    padding: 35px;
    background-color: #F8F9FA;
    border-radius: 12px;
    text-align: center;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2C3E50;
}

.member-role {
    font-size: 16px;
    color: #3498DB;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495E;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.approach-content-full {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content-full h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C3E50;
}

.approach-content-full p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495E;
}

/* CTA Section Simple */
.cta-section-simple {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495E;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 25px;
}

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

.service-detail-content a {
    color: #3498DB;
    text-decoration: underline;
}

.service-features {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495E;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}

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

/* Form Section Centered */
.form-section-centered {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #2C3E50;
}

.form-wrapper p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: #7F8C8D;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Contact Section Full */
.contact-section-full {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-info-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2C3E50;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-item {
    flex: 1 1 calc(33.333% - 50px);
    min-width: 250px;
    max-width: 350px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498DB;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495E;
}

/* Map Placeholder */
.map-placeholder {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.map-box {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background-color: #E8F4F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #BDC3C7;
}

.map-box p {
    font-size: 18px;
    color: #7F8C8D;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495E;
}

/* Thanks Section */
.thanks-section {
    padding: 120px 0;
    background-color: #F8F9FA;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #27AE60;
    color: #FFFFFF;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495E;
}

.selected-service-info {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #E8F4F8;
    border-radius: 8px;
    font-size: 17px;
    color: #2C3E50;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.legal-wrapper h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.legal-updated {
    font-size: 15px;
    color: #7F8C8D;
    margin-bottom: 40px;
}

.legal-wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.legal-wrapper h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495E;
}

.legal-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495E;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-wrapper ul {
    list-style-type: disc;
}

.legal-wrapper ol {
    list-style-type: decimal;
}

.legal-wrapper li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495E;
}

.legal-wrapper a {
    color: #3498DB;
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: #2980B9;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        min-height: 400px;
    }

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

    .form-left-content,
    .form-right-content {
        padding: 60px 40px;
    }

    .about-content-split {
        flex-direction: column;
        padding: 60px 0;
        gap: 40px;
    }

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

    .service-detail-content {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

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

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

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

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

    .section-title-center,
    .section-title-left {
        font-size: 32px;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 25px;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

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

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

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

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

    .value-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .team-member-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-title-center,
    .section-title-left {
        font-size: 28px;
    }

    .legal-wrapper h1 {
        font-size: 32px;
    }

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