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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #f39c12;
    color: #ffffff;
}

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

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

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

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #f39c12;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    background-color: #95a5a6;
}

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

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.intro-left {
    flex: 1;
    background-color: #bdc3c7;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-right p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
}

.services-preview {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

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

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    padding: 0 20px;
    font-size: 14px;
    color: #7f8c8d;
    flex: 1;
}

.service-card .price {
    padding: 15px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    margin: 0 20px 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #f39c12;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    color: #7f8c8d;
}

.approach-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    background-color: #34495e;
    padding: 80px 30px;
}

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

.form-container h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    color: #ecf0f1;
    text-align: center;
    margin-bottom: 40px;
}

#serviceForm {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.safety-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.safety-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #34495e;
}

.certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-item {
    padding: 12px 24px;
    background-color: #ecf0f1;
    border-left: 4px solid #f39c12;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

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

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

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

.footer-col a:hover {
    color: #f39c12;
}

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #bdc3c7;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 16px;
}

.thanks-container .selected-service {
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.content-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.content-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.8;
}

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

.content-page li {
    margin-bottom: 10px;
    color: #34495e;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}