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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e8751a;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.main-nav {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1528698827591-e19ccd7bc23d?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.intro-cards {
    padding: 80px 0;
    background: var(--light-color);
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

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

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

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 40px;
}

.label {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.story-image {
    width: 100%;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.benefits-section {
    padding: 100px 0;
    background: var(--light-color);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-content {
    padding: 30px;
}

.benefit-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--primary-color);
    color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.quote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

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

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    opacity: 0.9;
    font-size: 0.95rem;
}

.services-overview {
    padding: 100px 0;
    background: var(--light-color);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s;
}

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

.service-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.service-price span {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

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

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: #555;
}

.service-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.btn-service {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: var(--secondary-color);
}

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

.additional-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.addon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.addon-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.addon-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.addon-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.addon-price span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    display: block;
}

.btn-addon {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-addon:hover {
    background: var(--primary-color);
    color: #fff;
}

.cta-section-sticky {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1a4a6d);
    color: #fff;
}

.cta-content-box {
    text-align: center;
}

.cta-content-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    color: #fff;
}

.form-section {
    padding: 100px 0;
    background: var(--light-color);
}

.form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-wrapper > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    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 {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-push {
    padding: 60px 0;
}

.urgency-box {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.urgency-label {
    display: inline-block;
    background: #d63031;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.urgency-box h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 1.1rem;
    color: #555;
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--text-color);
}

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

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

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

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

.btn-reject {
    background: #fff;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    background: var(--light-color);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a4a6d);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-intro {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.timeline-section {
    padding: 100px 0;
    background: var(--light-color);
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.value-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 35px 30px;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s;
}

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

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 100px 0;
    background: var(--light-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.team-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: var(--shadow);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
}

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

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.cta-about {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.services-intro {
    padding: 60px 0 40px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

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

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-detail-card.featured-service {
    border: 4px solid var(--secondary-color);
}

.service-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 30px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.service-price-large span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

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

.service-description {
    padding: 40px;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.ideal-for {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.addon-services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.addon-services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.addon-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.addon-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: var(--shadow);
}

.addon-detail-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.addon-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.addon-price-large span {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.addon-detail-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list-compact {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list-compact li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.feature-list-compact li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.btn-addon-select {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-addon-select:hover {
    background: var(--secondary-color);
}

.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--primary-color);
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--light-color);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-services {
    padding: 80px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

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

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 20px;
}

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

.visit-card {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.visit-card h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visit-card > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.visit-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.visit-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.visit-benefit p {
    color: #555;
    line-height: 1.6;
}

.visit-cta-text {
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
}

.team-contact-section {
    padding: 80px 0;
}

.team-contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.team-contact-grid {
    display: flex;
    justify-content: center;
}

.team-contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    overflow: hidden;
}

.team-contact-image {
    flex: 0 0 250px;
    min-height: 300px;
}

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

.team-contact-info {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.team-contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-contact-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-contact-email {
    font-weight: 600;
}

.faq-contact {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.emergency-contact {
    padding: 60px 0;
}

.emergency-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.emergency-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.emergency-email {
    font-size: 1.3rem;
    font-weight: 700;
}

.emergency-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--light-color);
}

.thanks-content {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.thanks-service-info {
    margin-top: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    padding: 80px 0;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-resources {
    padding: 80px 0;
    background: var(--light-color);
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.resource-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-resource {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-resource:hover {
    background: var(--secondary-color);
    color: #fff;
}

.thanks-testimonial {
    padding: 80px 0;
}

.thanks-contact-reminder {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-reminder-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-reminder-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-reminder-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-email-large {
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-page {
    padding: 80px 0;
    background: var(--light-color);
}

.legal-intro {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: 0.3s;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2,
    .benefits-section h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .team-contact-card {
        flex-direction: column;
    }

    .team-contact-image {
        flex: 1;
        min-height: 250px;
    }
}
