* {
    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: #2c3e50;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #6a5acd;
}

.nav-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #6a5acd;
}

.hero-text {
    max-width: 600px;
}

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

.hero-text p {
    font-size: 18px;
    color: #e8e6f5;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #6a5acd;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.hero-image {
    flex: 1;
    background-color: #e8e6f5;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    width: calc(33.333% - 30px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    overflow: hidden;
}

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

.service-icon {
    width: 100%;
    height: 240px;
    background-color: #e8e6f5;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 25px 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #6a5acd;
    margin: 25px 25px 20px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #6a5acd;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #5848b8;
}

.form-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
}

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

.form-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #e8e6f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

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

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

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

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

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 15px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #6a5acd;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.thanks-details {
    background-color: #e8e6f5;
    padding: 25px;
    border-radius: 6px;
    margin: 35px 0;
    text-align: left;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .philosophy-split {
        flex-direction: column;
    }

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

    .nav-notice {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

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

    .service-card {
        width: 100%;
    }

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

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