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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 8%;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52,152,219,0.3);
}

.intro-narrow {
    padding: 90px 15%;
    background-color: #ffffff;
}

.intro-block h2 {
    font-size: 38px;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.image-text-overlap {
    position: relative;
    padding: 100px 8%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 50px;
}

.overlap-image {
    flex: 0 0 45%;
    background-color: #cbd5e0;
}

.overlap-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.overlap-content {
    flex: 1;
    padding-left: 30px;
}

.overlap-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.services-asymmetric {
    padding: 100px 8%;
    background-color: #ffffff;
}

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 15%;
}

.section-header-offset h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #718096;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-small {
    flex: 1 1 calc(40% - 15px);
}

.service-visual {
    background-color: #cbd5e0;
}

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

.service-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.form-section-diagonal {
    padding: 100px 8%;
    background: linear-gradient(120deg, #3498db 0%, #2c3e50 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.form-container > p {
    color: #718096;
    margin-bottom: 35px;
    font-size: 16px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-field input {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 90px 20%;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #cbd5e0;
    padding: 60px 8% 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-disclaimer {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 8%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 18px;
    color: #718096;
    margin-bottom: 50px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-details h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.step {
    display: flex;
    gap: 25px;
    text-align: left;
}

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

.step-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #3498db;
    color: #ffffff;
}

.about-hero {
    padding: 80px 8%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.about-intro p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-section {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-offset {
    flex: 0 0 40%;
    background-color: #cbd5e0;
}

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

.story-text {
    flex: 1;
}

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

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

.values-asymmetric {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-offset-1 {
    margin-left: 0;
}

.value-offset-2 {
    margin-left: 10%;
}

.value-offset-3 {
    margin-left: 20%;
}

.value-item h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.process-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.process-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.process-step {
    display: flex;
    gap: 50px;
    align-items: center;
}

.process-reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 0 0 45%;
    background-color: #cbd5e0;
}

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

.step-description {
    flex: 1;
}

.step-description h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-description p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.team-intro {
    padding: 80px 15%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-header {
    padding: 80px 8%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detailed {
    padding: 100px 8%;
    background-color: #ffffff;
}

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

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

.service-detail-left {
    flex: 0 0 45%;
    background-color: #cbd5e0;
}

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

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

.service-detail-right h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: #4a5568;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

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

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.cta-section-services {
    padding: 80px 8%;
    background: linear-gradient(120deg, #f8f9fa 0%, #e2e8f0 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.cta-btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-btn-large:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.3);
}

.contact-header {
    padding: 80px 8%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-main {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.time {
    color: #4a5568;
}

.hours-note {
    margin-top: 20px;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.contact-image-section {
    flex: 1;
    background-color: #cbd5e0;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.location-info {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.location-details {
    display: flex;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.location-item {
    flex: 1;
}

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

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

.contact-cta {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-content {
    padding: 80px 15%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.intro-text {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .image-text-overlap {
        flex-direction: column;
    }

    .story-section,
    .process-step,
    .service-detail-card,
    .contact-main {
        flex-direction: column;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3 {
        margin-left: 0;
    }

    .location-details {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }

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

    .section-header-offset {
        margin-left: 0;
    }

    .intro-narrow,
    .trust-section,
    .legal-content {
        padding: 60px 8%;
    }

    .footer-columns {
        flex-direction: column;
    }
}