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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    border-left: 1px solid #ecf0f1;
    padding-left: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

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

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

.hero-visual {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 720px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

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

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.intro-cards {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 12px;
}

.card-intro.reverse {
    flex-direction: row-reverse;
    background-color: #fff;
}

.card-img {
    width: 45%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.services-grid {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-grid h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #fff;
}

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

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

.service-card p {
    margin: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.price {
    margin: 20px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 32px;
    color: #555;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #fff;
}

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

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thanks-container {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.thanks-container .service-selected {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-container .service-selected strong {
    color: #2c3e50;
    font-size: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #2980b9;
}

.content-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

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

.content-container h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.content-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.content-container h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.content-container p {
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 16px;
}

.content-container ul,
.content-container ol {
    margin-bottom: 20px;
    margin-left: 24px;
}

.content-container li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-container a {
    color: #3498db;
    text-decoration: none;
}

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

.contact-page {
    padding: 120px 20px 80px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #34495e;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-page {
    padding: 120px 20px 80px;
}

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

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-section img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #bdc3c7;
}

.about-text {
    flex: 1;
}

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

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

.services-page {
    padding: 120px 20px 80px;
    background: #f8f9fa;
}

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

.services-container h1 {
    font-size: 56px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.service-detail {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.service-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        border-radius: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .card-img {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .contact-grid,
    .about-section,
    .about-section.reverse {
        flex-direction: column;
    }

    .about-section img {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}