* {
    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: #ffffff;
}

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

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

.main-header {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4ecca3;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #95a5a6;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4ecca3;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #0f3460;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.7) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ecf0f1;
}

.hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4ecca3;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #3db88d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.3);
}

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.info-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a1a2e;
}

.info-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

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

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

.section-header-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-header-center p {
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.service-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-module {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-module:hover {
    border-color: #4ecca3;
    box-shadow: 0 6px 20px rgba(78, 204, 163, 0.15);
}

.service-module.highlighted {
    border-color: #4ecca3;
    background-color: #e8f8f3;
}

.module-icon {
    margin-bottom: 20px;
    color: #4ecca3;
}

.service-module h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-module p {
    font-size: 14px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-price {
    font-size: 22px;
    font-weight: 700;
    color: #0f3460;
    margin-top: auto;
}

.module-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    width: 340px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4ecca3;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

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

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

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4ecca3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

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

.form-wrapper {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-wrapper > p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    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: #4ecca3;
}

.form-group-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #546e7a;
}

.form-group-checkbox label a {
    color: #4ecca3;
    text-decoration: none;
}

.form-group-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: #4ecca3;
    color: #1a1a2e;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3db88d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4ecca3;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4ecca3;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

.btn-cookie-accept {
    background-color: #4ecca3;
    color: #1a1a2e;
}

.btn-cookie-accept:hover {
    background-color: #3db88d;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
}

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

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 15px;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #e0e7ed;
}

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

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

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

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f3460;
}

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

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

.work-process p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

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

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

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4ecca3;
    margin-bottom: 10px;
}

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

.cta-about {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.cta-about p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4ecca3;
    color: #1a1a2e;
}

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

.btn-secondary {
    background-color: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
}

.btn-secondary:hover {
    background-color: #0f3460;
    color: #ffffff;
}

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

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

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

.service-detail-card.featured {
    background-color: #e8f8f3;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #4ecca3;
}

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

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

.service-price-tag {
    display: inline-block;
    background-color: #0f3460;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlighted-price {
    background-color: #4ecca3;
    color: #1a1a2e;
    font-size: 24px;
}

.original-price {
    text-decoration: line-through;
    font-size: 16px;
    color: #666;
    margin-left: 10px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: #0f3460;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 8px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #e0e7ed;
}

.package-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

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

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

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

.contact-info-panel h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f3460;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.contact-note {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #5d4037;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    background-color: #e0e7ed;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.office-hours-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.office-hours-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.office-hours-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 15px;
}

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

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    color: #4ecca3;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.thanks-content > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0f3460;
}

.thanks-info ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.thanks-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecca3;
    font-weight: 700;
}

.thanks-service-info {
    background-color: #e8f8f3;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #0f3460;
}

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

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

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

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

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

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

    .hero-content p {
        font-size: 16px;
    }

    .cards-grid,
    .service-modules,
    .process-flow,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .header-container {
        flex-direction: column;
        text-align: center;
    }

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

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

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