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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 20px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: #f8f9fa;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0052a3;
    cursor: pointer;
}

.cta-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-primary-large:hover {
    background-color: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
    cursor: pointer;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.services-highlight {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e8eef3;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-service {
    padding: 14px 30px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #0052a3;
    cursor: pointer;
}

.benefits-split {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-wrapper-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.check-icon {
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0052a3;
    cursor: pointer;
}

.final-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.cta-content-center {
    text-align: center;
    color: #ffffff;
}

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

.cta-content-center p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #d1d5db;
}

.footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.footer-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept {
    padding: 10px 24px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #0052a3;
    cursor: pointer;
}

.btn-reject {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.expertise-split {
    padding: 80px 0;
    background-color: #ffffff;
}

.expertise-list {
    list-style: none;
    margin: 30px 0;
}

.expertise-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.expertise-list li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    background-color: #1a1a1a;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-box-large {
    background-color: #0066cc;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-box-large h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box-large p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e5f0ff;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.service-detail-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.btn-service-detail {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service-detail:hover {
    background-color: #0052a3;
}

.services-comparison {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.comparison-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.comparison-recommendation {
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.services-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-email {
    color: #555;
}

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

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

.contact-reasons {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.reason-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.reason-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.reason-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.location-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.location-text {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thanks-hero {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 20px;
    color: #555;
}

.thanks-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

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

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-resources {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.resources-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.resource-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #0052a3;
}

.thanks-service-info {
    padding: 80px 0;
    background-color: #ffffff;
    display: none;
}

.service-recap {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.service-recap h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.service-display {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-name-display {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-price-display {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.service-note {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-final {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thanks-box {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin: 16px 0 16px 30px;
}

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

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

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

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

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

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

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ad-disclosure {
        margin: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

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

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

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

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

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

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