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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.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;
    min-width: 300px;
}

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

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

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

.cookie-accept:hover {
    background: #2980b9;
}

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

.cookie-reject:hover {
    background: #333333;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

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

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

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

.hero-card {
    padding: 60px 0;
}

.hero-grid {
    display: flex;
    flex-direction: column;
}

.hero-card-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 60px 40px 40px;
}

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

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

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

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

.content-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.card-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.card-accent h3,
.card-accent p {
    color: #ffffff;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

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

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-btn {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.form-intro {
    text-align: center;
    color: #666666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.trust-image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.footer-grid {
    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: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 15px;
}

.thanks-card .selected-service {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 600;
    color: #3498db;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #2980b9;
}

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

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

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

.contact-info h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

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

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

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

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

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

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

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-image-section {
    margin: 60px 0;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-detail-section {
    padding: 80px 0;
}

.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

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

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

    .section-title {
        font-size: 28px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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