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

:root {
    --primary-color: #1a4d7d;
    --secondary-color: #2c7ab5;
    --accent-color: #f27e3f;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-cookie.secondary {
    background: transparent;
    border: 1px solid var(--bg-white);
}

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-right {
    padding: 40px;
    overflow: hidden;
}

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

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

.hero-split p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

.cta-primary:hover {
    background: #d66d35;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-content.bg-light {
    background: var(--bg-light);
}

.content-text,
.content-image {
    flex: 1;
}

.content-text {
    padding: 40px 60px 40px 0;
}

.split-content.reverse .content-text {
    padding: 40px 0 40px 60px;
}

.content-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    display: flex;
    align-items: center;
    padding: 20px;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 12px;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    color: var(--accent-color);
}

.feature-cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.feature-cards h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.testimonial-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 40px;
}

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

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.services-overview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-light);
}

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

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

.services-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.services-split {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-item h3 {
    font-size: 24px;
    color: var(--primary-color);
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 16px;
    font-weight: 400;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

.service-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.form-section {
    background: var(--bg-white);
    padding: 80px 40px;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

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

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

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.main-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d66d35;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column a {
    color: #cccccc;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #d66d35;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero.small {
    padding: 80px 40px 60px;
}

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.values-section,
.stats-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.values-section h2,
.stats-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

.cta-section {
    background: var(--secondary-color);
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--bg-white);
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    margin-bottom: 80px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-card.highlight {
    border: 3px solid var(--accent-color);
}

.service-detail-split {
    display: flex;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding: 50px;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

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

.service-outcome {
    padding: 40px;
}

.service-outcome h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-features ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-timeline {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

.service-cta {
    display: inline-block;
}

.comparison-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-guide {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
}

.comparison-item {
    flex: 1;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.comparison-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.comparison-item ul {
    list-style: none;
}

.comparison-item ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.comparison-item ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.comparison-cta {
    text-align: center;
}

.comparison-cta p {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.contact-container-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-note p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.map-section {
    margin: 60px 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.thanks-content {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.thanks-next {
    margin-bottom: 50px;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

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

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

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

.thanks-additional {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.thanks-additional h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

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

    .hero-right {
        padding: 0;
        min-height: 300px;
    }

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .content-text,
    .split-content.reverse .content-text {
        padding: 20px;
    }

    .content-image {
        padding: 20px;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-column {
        flex: 1 1 45%;
    }

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

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-detail-left {
        padding: 32px 24px;
    }

    .service-outcome {
        padding: 24px;
    }

    .comparison-guide {
        flex-direction: column;
    }

    .contact-container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .faq-item {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .card {
        min-width: 100%;
    }

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

    .value-card {
        min-width: 100%;
    }

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

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

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