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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #f39c12;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #546e7a;
}

.hero-right {
    background-color: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

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

.intro-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image,
.intro-text {
    flex: 1;
}

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

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 20px;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
    color: #546e7a;
    flex-grow: 1;
}

.price {
    padding: 15px 25px;
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 12px 25px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

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

.form-intro p {
    font-size: 18px;
    color: #546e7a;
}

.service-display {
    background-color: #ecf0f1;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

.service-display.show {
    display: block;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #dce1e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 15px 35px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text,
.why-image {
    flex: 1;
}

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

.why-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

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

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #95a5a6;
}

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

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

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

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image,
.story-text {
    flex: 1;
}

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

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

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: left;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.team-approach {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #546e7a;
    line-height: 1.8;
}

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

.service-full {
    margin-bottom: 80px;
}

.service-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-info,
.service-visual {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.price-box {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

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

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

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

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

.cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info,
.contact-visual {
    flex: 1;
}

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

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

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

.info-block p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.location-note {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

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

.thanks-section {
    padding: 150px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.legal-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #546e7a;
}

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

.legal-content ul {
    margin: 15px 0 25px 30px;
}

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

.legal-content em {
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-content,
    .why-content,
    .story-block,
    .service-content,
    .contact-layout {
        flex-direction: column;
    }

    .story-block.reverse {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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

    .section-header h2,
    .page-hero h1 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

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