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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a4a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-menu a:hover {
    color: #2d5a4a;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 540px;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a4a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-hero:hover {
    background: #234438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 74, 0.3);
}

.hero-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

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

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.card-content {
    padding: 2rem;
}

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

.card-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2d5a4a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a4a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #234438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 74, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2d5a4a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d5a4a;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #2d5a4a;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.about-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-link {
    color: #2d5a4a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #234438;
}

.process-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-split {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2d5a4a;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.process-step p {
    color: #4a5568;
    line-height: 1.7;
}

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

.form-split {
    display: flex;
    gap: 4rem;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.form-intro {
    flex: 1;
    padding: 4rem 3rem;
    background: #2d5a4a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e5e5e5;
    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: #2d5a4a;
}

.trust-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a4a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.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 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    border-top: 3px solid #2d5a4a;
}

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

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

.cookie-content p {
    flex: 1;
    color: #2c3e50;
}

.cookie-content a {
    color: #2d5a4a;
    text-decoration: underline;
}

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

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a4a;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a4a;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #2d5a4a;
    border-radius: 4px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a4a;
}

.price-info {
    font-size: 1rem;
    color: #4a5568;
}

.service-detail-image {
    flex: 1;
    background: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.about-story {
    flex: 1;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a4a;
}

.about-story p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-block {
    flex: 1;
    background: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

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

.technology-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.technology-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.technology-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    color: #4a5568;
}

.tech-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #2d5a4a;
    font-weight: 700;
}

.technology-image {
    flex: 1;
    background: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.team-expertise {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a4a;
}

.expertise-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.philosophy-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a4a;
}

.contact-details > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

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

.info-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(45, 90, 74, 0.9);
    color: #ffffff;
}

.map-overlay p {
    font-size: 1.1rem;
    margin: 0;
}

.faq-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    max-width: 48%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a4a;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

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

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

.selected-service {
    padding: 1rem 2rem;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 3rem;
    color: #2d5a4a;
    font-weight: 600;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

.additional-info {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.info-card p {
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5a4a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a4a;
    margin-top: 1.5rem;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2d5a4a;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .form-split,
    .service-detail-item,
    .about-content-split,
    .technology-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .process-split {
        flex-direction: column;
    }

    .faq-item {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}