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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.ad-notice {
    color: #ffd700;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #fff;
}

.hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.btn-cta {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-cta:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.split-reverse {
    display: flex;
    padding: 5rem 0;
}

.split-image {
    flex: 1;
    background-color: #ddd;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-split {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.service-item-split {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 1rem 0;
    border-top: 2px solid #ffd700;
}

.service-visual {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-left {
    flex: 1;
    padding-right: 3rem;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.trust-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

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

.trust-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.trust-container a {
    color: #2c3e50;
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-split {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.references {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem 0;
    border-top: 1px solid #333;
}

.references h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #ffd700;
}

.references ol {
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.5rem;
    color: #aaa;
}

.references a {
    color: #ffd700;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.7rem 1.5rem;
    background-color: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.page-hero {
    background-color: #2c3e50;
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: #fff;
}

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.split-section {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.split-text {
    flex: 1;
    padding-right: 3rem;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.split-image-about {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.split-image-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.split-reverse-about {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.split-image-left {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

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

.split-text-right {
    flex: 1;
    padding: 3rem;
}

.split-text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.cta-about {
    background-color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.services-detail {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-left {
    flex: 1;
    background-color: #e5e5e5;
}

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

.service-detail-right {
    flex: 1;
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #ffd700;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.additional-services {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.additional-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-process {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.service-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ffd700;
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.cta-services {
    background-color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    margin-top: 5rem;
}

.cta-services .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.email-static {
    font-weight: 600;
    color: #2c3e50;
}

.contact-hours {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-hours h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.hours-list {
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #555;
}

.hours-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-info {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.legal-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #fff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.thanks-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.selected-service {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #ffd700;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.next-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.next-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #ffd700;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-split,
    .split-reverse,
    .split-section,
    .split-reverse-about,
    .service-item-split,
    .service-detail-item,
    .form-section-split,
    .contact-split,
    .footer-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .split-text,
    .split-text-right,
    .service-content,
    .service-detail-right,
    .form-left,
    .contact-info,
    .contact-hours {
        padding: 2rem;
    }

    .form-left {
        padding-right: 2rem;
    }

    .split-text {
        padding-right: 2rem;
    }

    .hero-left h1,
    .hero-content-centered h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .split-text h2,
    .split-text-right h2 {
        font-size: 1.8rem;
    }

    .values-grid,
    .additional-grid,
    .process-steps {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}