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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.ad-notice {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-card {
    flex: 1;
    min-width: 300px;
}

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

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

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.value-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

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

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dark);
}

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

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

.btn-service:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

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

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

.approach-text {
    flex: 1.2;
    min-width: 300px;
}

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

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

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

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

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

.cta-card-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

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

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

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

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #059669;
}

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

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    color: var(--text-light);
}

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

.expertise-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.expertise-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

.approach-detail-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.approach-blocks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.approach-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.approach-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.cta-about {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-detail-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.service-tagline {
    font-size: 16px;
    color: var(--text-light);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-detail-body {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.service-description {
    flex: 1.5;
    min-width: 300px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-includes {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 24px;
    border-radius: 12px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

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

.service-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.contact-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.contact-card p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
}

.contact-details-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-text {
    flex: 1.5;
    min-width: 300px;
}

.contact-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

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

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

.contact-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 60vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-service {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.next-step p {
    flex: 1;
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 8px;
}

.btn-back {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-card h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

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

    .form-wrapper {
        padding: 32px 24px;
    }

    .cta-card-large {
        padding: 40px 24px;
    }

    .cta-card-large h2 {
        font-size: 28px;
    }

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

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 16px;
        font-size: 14px;
    }

    .hero-card h1 {
        font-size: 28px;
    }

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