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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 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;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

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

.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.services-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
}

.service-card p {
    padding: 0 20px 15px;
    color: #666;
}

.service-price {
    padding: 0 20px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

.select-service-btn {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #45a049;
}

.full-width-content {
    padding: 80px 0;
}

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

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

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-price-inline {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
    margin: 20px 0;
}

.content-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.installation-section {
    padding: 80px 0;
    background-color: #fff;
}

.installation-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.installation-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

.design-section {
    padding: 80px 0;
}

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

.design-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

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

.design-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.design-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.white-btn {
    background-color: white;
    color: #1a1a1a;
}

.white-btn:hover {
    background-color: #f0f0f0;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
}

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 20px;
}

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

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 14px;
}

.page-hero {
    background-color: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

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

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

.story-section {
    padding: 80px 0;
}

.story-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.value-item p {
    color: #666;
    line-height: 1.8;
}

.expertise-section {
    padding: 80px 0;
    background-color: #fff;
}

.expertise-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.expertise-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.expertise-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.expertise-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.approach-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.approach-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

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

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4CAF50;
    text-decoration: none;
    border: 2px solid #4CAF50;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

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

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

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style-position: inside;
    color: #666;
    line-height: 2;
}

.pricing-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.price-note {
    color: #666;
    font-size: 14px;
}

.additional-services {
    padding: 80px 0;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.additional-services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.additional-service-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.additional-service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.additional-service-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    margin: 20px 0;
}

.process-overview {
    padding: 80px 0;
    background-color: #fff;
}

.process-overview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.process-overview > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #4CAF50;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
}

.timeline-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #666;
    line-height: 1.8;
}

.cta-services {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 0;
}

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

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

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

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

.contact-detail-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-detail-item p {
    color: #666;
    line-height: 1.8;
}

.contact-note {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-note p {
    line-height: 1.8;
}

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

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form-section > p {
    margin-bottom: 30px;
    color: #666;
}

.map-section {
    padding: 80px 0;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.map-placeholder {
    width: 100%;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.thanks-section {
    padding: 80px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 30px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.thanks-next-steps ul {
    list-style-position: inside;
    color: #666;
    line-height: 2;
}

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

.additional-info {
    padding: 80px 0;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.info-card ul {
    list-style-position: inside;
    color: #666;
    line-height: 2;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 2;
}

.legal-content a {
    color: #4CAF50;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

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

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

    .content-split,
    .design-content,
    .expertise-split,
    .service-detail-content {
        flex-direction: column;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}