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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #fff;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #667eea;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #667eea;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: #667eea;
    color: #fff;
}

.info-cards {
    padding: 80px 0;
    background-color: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    margin-bottom: 20px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #5568d3;
}

.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.why-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.why-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

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

.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    padding: 15px 30px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #5568d3;
}

.disclaimer {
    padding: 40px 0;
    background-color: #e9ecef;
}

.disclaimer p {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bbb;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #fff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

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

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

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

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

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

.history-section {
    padding: 80px 0;
    background-color: #fff;
}

.history-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.history-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.history-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.history-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 80px 0;
    background-color: #f1f3f5;
}

.team-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.approach-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

.approach-number {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

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

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

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

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

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.service-detail-card {
    margin-bottom: 60px;
}

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

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

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #667eea;
    font-weight: bold;
    font-size: 24px;
}

.service-detail-price {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

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

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

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #667eea;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.no-link {
    pointer-events: none;
    user-select: text;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

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

.contact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

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

.location-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

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

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 550px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.selected-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

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

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

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

.last-updated {
    color: #999;
    margin-bottom: 40px;
    font-size: 14px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #667eea;
}

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

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

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

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

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

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

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

    .nav-menu {
        gap: 15px;
    }

    .card-grid,
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

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