* {
    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: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand a {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-label {
    background-color: #e8f4f8;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.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: #3498db;
}

.hero-section {
    margin-top: -1px;
}

.hero-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    width: 100%;
    padding: 80px 20px;
    text-align: center;
}

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

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 15px 40px;
    border: 2px solid #3498db;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.intro-text {
    flex: 1;
    min-width: 300px;
}

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

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

.intro-visual {
    flex: 1;
    min-width: 300px;
}

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

.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-body p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    margin: 20px 0;
    padding: 15px;
    background-color: #e8f4f8;
    border-radius: 6px;
    text-align: center;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.unit {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-top: 5px;
}

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

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

.benefits-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-visual {
    flex: 1;
    min-width: 300px;
}

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

.benefit-content {
    flex: 1;
    min-width: 300px;
}

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

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.quote {
    font-size: 17px;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

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

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

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

.philosophy-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.philosophy-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.philosophy-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
    display: block;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.values-visual {
    flex: 1;
    min-width: 300px;
}

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

.values-content {
    flex: 1;
    min-width: 300px;
}

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

.values-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.service-header {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
}

.service-info {
    flex: 1;
    min-width: 280px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-price span {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.service-image-wrap {
    flex: 1;
    min-width: 280px;
}

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

.service-description {
    padding: 0 40px 40px;
}

.service-description p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-description ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-description ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 24px;
}

.contact-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.email-display {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    display: inline-block;
    font-family: monospace;
    font-size: 15px;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

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

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.map-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-section > .container > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #5a6c7d;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-summary {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.updated-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

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

.cookies-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 17px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .intro-layout,
    .benefits-layout,
    .story-layout,
    .values-layout,
    .contact-layout {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}