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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

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

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

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #f8f9fa;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Hero Card */
.hero-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.cta-primary {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Story Section */
.story-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.story-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-card h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.story-card p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    padding: 100px 0;
    background-color: #fff;
}

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

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #546e7a;
    max-width: 700px;
    margin: -40px auto 60px;
    line-height: 1.7;
}

.cards-container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    color: #546e7a;
    padding: 0 24px 28px;
    line-height: 1.7;
}

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

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 50px;
    line-height: 1.8;
}

.testimonial-card {
    background-color: #fff;
    padding: 36px;
    border-radius: 12px;
    margin-bottom: 28px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 16px;
}

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

/* Services Reveal */
.services-reveal {
    padding: 100px 0;
    background-color: #fff;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 370px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 23px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    padding: 0 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    padding: 20px 24px 16px;
}

.btn-select {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 24px 24px;
    border-radius: 8px;
}

.btn-select:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.service-card.selected {
    border: 3px solid #27ae60;
}

/* Order Form Section */
.order-form-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.selected-service {
    background-color: #d5f4e6;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 17px;
    font-weight: 600;
    color: #27ae60;
    text-align: center;
}

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

.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;
    border: 2px solid #dce4ec;
    border-radius: 8px;
    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: #e74c3c;
}

.btn-submit {
    width: 100%;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

/* Final CTA */
.final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-secondary {
    background-color: #fff;
    color: #667eea;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    background-color: #1a252f;
    padding: 30px;
    margin: 0;
}

.footer-disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #34495e;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.8;
}

.team-image {
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.process-card {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.process-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.commitment-card {
    background-color: #ecf0f1;
    padding: 50px;
    border-radius: 16px;
}

.commitment-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.commitment-card p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

.service-detail-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.service-features li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.delivery-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.delivery-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #fff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-info-card,
.contact-map-card {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f5f5f5;
}

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

.directions-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.directions-info p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-faq {
    margin-bottom: 80px;
}

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.faq-card {
    flex: 1;
    min-width: 320px;
    max-width: 48%;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.faq-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-cta {
    background-color: #ecf0f1;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 28px;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.order-confirmation h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.step-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.service-selected {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 17px;
    font-weight: 600;
    color: #27ae60;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.contact-support {
    border-top: 2px solid #ecf0f1;
    padding-top: 32px;
}

.contact-support p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
}

/* Legal Page */
.legal-page {
    padding: 80px 0;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.update-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #dce4ec;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        margin: 40px auto;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .about-card {
        flex-direction: column;
    }

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

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

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

    .story-card {
        padding: 40px 30px;
    }

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

    .thanks-card {
        padding: 40px 30px;
    }

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

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

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
}