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

html {
    scroll-behavior: smooth;
}

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

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

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

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

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

.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 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 4px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2d3748;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-wrapper.narrow {
    max-width: 900px;
}

.intro-section {
    background-color: #f7fafc;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-highlight {
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-intro p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 20px 0;
}

.select-service-btn {
    padding: 12px 24px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #2c5282;
    transform: translateX(4px);
}

.trust-section {
    background-color: #edf2f7;
}

.trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.form-section {
    background-color: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-header p {
    font-size: 17px;
    color: #718096;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.testimonials-section {
    background-color: #1a202c;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 600;
}

.disclaimer-section {
    background-color: #f7fafc;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #718096;
    text-align: center;
    padding: 20px;
    background-color: #edf2f7;
    border-radius: 6px;
    border-left: 4px solid #4299e1;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.page-header {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #cbd5e0;
}

.about-content {
    background-color: #ffffff;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-section {
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2b6cb0;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.equipment-section {
    background-color: #edf2f7;
}

.equipment-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.equipment-text {
    flex: 1;
}

.equipment-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.equipment-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.equipment-list {
    list-style: none;
    padding-left: 0;
}

.equipment-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.equipment-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.cta-section {
    background-color: #2b6cb0;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2b6cb0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.feature {
    font-size: 15px;
    color: #2d5f3e;
    background-color: #f0fdf4;
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 3px solid #10b981;
}

.service-pricing {
    margin-top: 24px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #718096;
}

.price-value {
    font-size: 30px;
    font-weight: 700;
    color: #2b6cb0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.warranty-section {
    background-color: #f7fafc;
}

.warranty-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
    text-align: center;
}

.warranty-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.contact-info-section {
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background-color: #f7fafc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-details {
    background-color: #f7fafc;
}

.contact-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #1a202c;
}

.contact-details h2:first-child {
    margin-top: 0;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.map-section {
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.map-placeholder {
    background-color: #edf2f7;
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    border: 2px dashed #cbd5e0;
}

.map-info {
    font-size: 16px;
    color: #4a5568;
}

.map-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a5568;
}

.thanks-info {
    margin: 30px 0;
}

.selected-service {
    font-size: 17px;
    color: #2b6cb0;
    background-color: #ebf8ff;
    padding: 16px;
    border-radius: 6px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #edf2f7;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.contact-reminder {
    margin-top: 40px;
    padding: 24px;
    background-color: #ebf8ff;
    border-radius: 6px;
    border-left: 4px solid #4299e1;
}

.contact-reminder p {
    margin: 8px 0;
    font-size: 15px;
    color: #2c5282;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

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

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2c5282;
}

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

.gdpr-table thead,
.cookie-table thead {
    background-color: #edf2f7;
}

.gdpr-table th,
.cookie-table th,
.gdpr-table td,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

.gdpr-table th,
.cookie-table th {
    font-weight: 700;
    color: #1a202c;
}

.gdpr-table td,
.cookie-table td {
    color: #4a5568;
}

@media (max-width: 968px) {
    .header-container {
        padding: 16px 24px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid #edf2f7;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .section-wrapper {
        padding: 50px 24px;
    }

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

    .about-story,
    .equipment-content,
    .service-detail-card {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .footer-content {
        padding: 40px 24px 20px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .intro-content h2,
    .services-intro h2 {
        font-size: 28px;
    }

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