* {
    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: #2d3748;
    background-color: #f7fafc;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.ad-notice {
    font-size: 11px;
    color: #718096;
    background-color: #edf2f7;
    padding: 4px 10px;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #2d3748;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

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

.hero-card {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-content-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 600px;
}

.hero-content-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero-content-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-primary {
    background-color: #3182ce;
    color: #ffffff;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.value-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-intro p {
    font-size: 18px;
    color: #718096;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

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

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

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 0;
    background-color: #f7fafc;
}

.services-showcase h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    background-color: #3182ce;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #2c5282;
}

.testimonials-inline {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-card {
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1a202c;
}

.testimonial-author span {
    font-size: 14px;
    color: #718096;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-header p {
    color: #718096;
    font-size: 16px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #3182ce;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-indicators {
    padding: 60px 0;
    background-color: #2d3748;
    color: #ffffff;
}

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

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

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #cbd5e0;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    padding: 30px;
    background-color: #2d3748;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.6;
}

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

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

.page-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #cbd5e0;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.story-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
}

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

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.story-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.approach-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 12px;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.values-intro {
    text-align: center;
    margin-bottom: 50px;
}

.values-intro h2 {
    font-size: 36px;
    color: #1a202c;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

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

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.team-expertise {
    padding: 80px 0;
    background-color: #f7fafc;
}

.team-expertise h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.expertise-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.expertise-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

.cta-card {
    background-color: #3182ce;
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #3182ce;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 50px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.btn-select-service {
    background-color: #3182ce;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #2c5282;
}

.packages-comparison {
    padding: 80px 0;
    background-color: #f7fafc;
}

.packages-comparison h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.package-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.package-card.featured {
    border: 3px solid #3182ce;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3182ce;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
    text-align: center;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: #3182ce;
    text-align: center;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #4a5568;
}

.package-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.package-note {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    font-style: italic;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-main {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
}

.contact-text p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-note {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-top: 5px;
}

.contact-map-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.map-text {
    color: #718096;
    font-size: 16px;
}

.contact-form-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a202c;
}

.contact-form-card p {
    color: #718096;
    margin-bottom: 30px;
}

.faq-contact {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.faq-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-card p {
    color: #4a5568;
    line-height: 1.6;
}

.availability-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.availability-card {
    background-color: #edf2f7;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.availability-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.availability-card p {
    color: #4a5568;
    line-height: 1.6;
}

.thanks-hero {
    padding: 100px 0;
    background-color: #f7fafc;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    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: 20px;
    color: #1a202c;
}

.thanks-lead {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 50px;
}

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

.detail-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.detail-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-text p {
    color: #4a5568;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3182ce;
    padding: 15px 35px;
    border: 2px solid #3182ce;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

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

.legal-date {
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 4;
    }

    .hero-content-card {
        padding: 30px;
    }

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

    .cards-grid,
    .services-card-grid,
    .approach-cards,
    .expertise-grid,
    .comparison-grid,
    .faq-grid,
    .info-cards {
        flex-direction: column;
    }

    .service-detail-layout {
        padding: 30px;
    }

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

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

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

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