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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
}

.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: 280px;
}

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

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

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

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 30px;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    padding: 40px 0;
    transform: translateY(-30px);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #34495e;
    max-width: 560px;
}

.hero-image-offset {
    flex: 1;
    min-width: 400px;
    transform: translateY(40px) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary,
.btn-primary {
    background: #3498db;
    color: #ffffff;
}

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

.cta-secondary,
.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-split {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.split-narrow {
    flex: 0.8;
    min-width: 300px;
    transform: translateX(-40px);
}

.split-narrow img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    object-fit: cover;
}

.split-wide {
    flex: 1.2;
    min-width: 320px;
}

.split-wide h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.split-wide p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.services-cards-irregular {
    padding: 120px 30px;
    background: #f8f9fa;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    transform: translateX(60px);
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.cards-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    width: 360px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: #e9ecef;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #5a6c7d;
    line-height: 1.5;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px 16px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.card-offset-1 {
    transform: rotate(1deg);
}

.card-offset-2 {
    transform: translateY(20px) rotate(-1deg);
}

.card-offset-3 {
    transform: translateY(-15px) rotate(0.5deg);
}

.card-offset-4 {
    transform: rotate(-0.8deg);
}

.card-offset-5 {
    transform: translateY(10px) rotate(0.6deg);
}

.form-section-diagonal {
    padding: 100px 30px;
    background: linear-gradient(125deg, #ecf0f1 0%, #ffffff 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.selected-service-display {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 5px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.selected-service-display strong {
    color: #1a252f;
}

#selected-service-name {
    color: #27ae60;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    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;
}

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.benefits-staggered {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-staggered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-block {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 600px;
}

.benefit-left {
    align-self: flex-start;
    transform: translateX(-20px);
}

.benefit-right {
    align-self: flex-end;
    transform: translateX(20px);
}

.benefit-center {
    align-self: center;
}

.benefit-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.cta-floating {
    padding: 80px 30px;
    background: #3498db;
    margin: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .cta-secondary {
    background: #ffffff;
    color: #3498db;
    border: none;
}

.cta-content .cta-secondary:hover {
    background: #ecf0f1;
    color: #2980b9;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 13px;
}

.about-hero-offset {
    padding: 80px 30px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-primary {
    flex: 1.3;
    min-width: 320px;
}

.about-text-primary h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-text-primary p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
}

.about-image-stack {
    flex: 0.7;
    min-width: 300px;
    transform: rotate(2deg) translateY(20px);
}

.about-image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    background-color: #f8f9fa;
    object-fit: cover;
}

.mission-diagonal {
    padding: 100px 30px;
    background: #ffffff;
    transform: skewY(-1deg);
    margin: 60px 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    transform: skewY(1deg);
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.mission-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.values-staggered {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.values-staggered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.value-pos-1 {
    transform: translateY(-20px) rotate(-1deg);
}

.value-pos-2 {
    transform: translateY(10px) rotate(0.8deg);
}

.value-pos-3 {
    transform: translateY(-15px) rotate(0.5deg);
}

.value-pos-4 {
    transform: translateY(5px) rotate(-0.6deg);
}

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

.value-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section {
    padding: 100px 30px;
    background: #ecf0f1;
}

.team-intro {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a252f;
}

.team-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.team-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.team-text {
    flex: 1;
    min-width: 320px;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    min-width: 320px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    object-fit: cover;
}

.cta-about {
    padding: 80px 30px;
    background: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 28px;
}

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

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.service-detail-section {
    padding: 80px 30px;
}

.service-reverse {
    background: #f8f9fa;
}

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    object-fit: cover;
}

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

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

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

.contact-hero {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background-color: #ecf0f1;
    object-fit: cover;
}

.additional-contact-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.additional-contact-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.additional-contact-info > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
    line-height: 1.7;
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 100px 30px;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-main-text {
    font-size: 18px;
    margin-bottom: 28px;
    color: #34495e;
}

.thanks-service-info {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 5px;
    margin-bottom: 40px;
    border-left: 4px solid #27ae60;
}

.thanks-service-info p {
    margin: 0;
    font-size: 16px;
    color: #1a252f;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

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

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

.step-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.legal-content {
    padding: 80px 30px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container ul {
    margin: 16px 0 16px 24px;
}

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

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-container em {
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-offset-container,
    .about-container,
    .service-detail-layout,
    .team-layout,
    .contact-layout {
        gap: 40px;
    }

    .hero-text-block,
    .hero-image-offset {
        transform: none;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        transform: none;
    }

    .section-header-offset {
        transform: none;
    }

    .legal-container {
        padding: 40px 24px;
    }
}