* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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: 10px;
}

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

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

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

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.intro-image {
    flex: 1;
    background: #e8ebed;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-grid h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 20px 16px;
    color: #666666;
    font-size: 15px;
}

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

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #1a252f;
}

.btn-select.selected {
    background: #27ae60;
}

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

.form-section > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-split-left {
    flex: 1;
}

.form-split-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-split-left p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
}

.form-split-right {
    flex: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#contact-form input,
#contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

#contact-form input[readonly] {
    background: #e8f4f8;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.benefits-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.benefits-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.about-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background: #e8ebed;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

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

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

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow::after {
    content: '→';
    font-size: 20px;
}

.disclaimer-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
    padding: 20px;
    background: #f8f9fa;
    border-left: 3px solid #bdc3c7;
    border-radius: 4px;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

.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;
}

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

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

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

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 18px;
    opacity: 0.95;
}

.about-story {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 1;
    background: #e8ebed;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

.values-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.approach-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background: #e8ebed;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.cta-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
    margin: 100px 0 0;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 1;
    background: #e8ebed;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-detail-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #555555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-detail-text .btn-select {
    width: auto;
    margin: 24px 0 0;
    padding: 14px 32px;
}

.contact-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 40px;
}

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

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

.contact-map {
    flex: 1;
    background: #e8ebed;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-page .btn-primary {
    margin-top: 32px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .intro-section,
    .about-preview,
    .story-container,
    .approach-container,
    .service-detail-item,
    .contact-grid {
        flex-direction: column;
    }

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

    .form-section > div {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
    }

    .page-header {
        padding: 60px 20px 40px;
    }

    .header-content h1 {
        font-size: 36px;
    }
}