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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.nav-menu li a:hover {
    color: #27ae60;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 120px 50px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-block {
    flex: 1;
    padding: 80px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: 60px;
    margin-left: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 100px 50px;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

.content-left {
    flex: 1.2;
    padding-top: 40px;
}

.content-left h2 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.content-left a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

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

.content-right-image {
    flex: 0.8;
    background-color: #f0f4f7;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(60px);
}

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

.problem-amplification {
    padding: 120px 50px;
    background: linear-gradient(to bottom right, #2c3e50, #34495e);
    position: relative;
}

.overlay-block {
    max-width: 1200px;
    margin: 0 auto;
}

.overlay-block h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
}

.stats-irregular {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.stat-card.offset {
    transform: translateY(-30px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.stat-card p {
    color: #ecf0f1;
    font-size: 1rem;
}

.insight-section {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.insight-content h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.cta-inline {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #229954;
    border-bottom-color: #229954;
}

.services-preview {
    padding: 120px 50px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.6rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 70px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s;
}

.service-card.large {
    flex: 1.5;
    max-width: 500px;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1a252f;
    padding: 25px 25px 15px;
}

.service-card p {
    color: #5a6c7d;
    padding: 0 25px 20px;
    font-size: 1rem;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0 25px 25px;
}

.testimonials-inline {
    padding: 80px 50px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 50px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #27ae60;
}

.testimonial-block.offset-right {
    margin-left: auto;
    margin-right: 100px;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-reveal {
    padding: 100px 50px;
    background-color: #ffffff;
}

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

.benefits-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.benefit-item:nth-child(even) {
    transform: translateY(30px);
}

.benefit-item h3 {
    font-size: 1.6rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #5a6c7d;
    font-size: 1rem;
}

.cta-form-section {
    padding: 120px 50px;
    background: linear-gradient(to right, #27ae60, #229954);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-container-offset h2 {
    font-size: 2.3rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.form-container-offset p {
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

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

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 50px 20px;
}

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

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

.footer-block h4 {
    color: #27ae60;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-block p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

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

.footer-block ul li a:hover {
    color: #27ae60;
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.references li a {
    color: #27ae60;
    text-decoration: none;
}

.references li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 37, 47, 0.98);
    padding: 25px 50px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 0.95rem;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #7f8c8d;
}

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

.page-hero-minimal {
    padding: 150px 50px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-hero-minimal h1 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.page-hero-minimal p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 100px 50px;
    background-color: #ffffff;
}

.story-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-content img {
    flex: 1;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    background-color: #f0f4f7;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.3rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.values-offset {
    padding: 100px 50px;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card.offset-top {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.value-card p {
    color: #5a6c7d;
    font-size: 1rem;
}

.team-info {
    padding: 100px 50px;
    background-color: #ffffff;
    text-align: center;
}

.team-info h2 {
    font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 60px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.team-stat {
    text-align: center;
}

.team-stat .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.team-stat p {
    font-size: 1rem;
    color: #5a6c7d;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.4rem;
    color: #1a252f;
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: 15px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.step p {
    color: #5a6c7d;
    font-size: 1rem;
}

.cta-simple {
    padding: 100px 50px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.3rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.cta-simple p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.services-detailed {
    padding: 80px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #5a6c7d;
}

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

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

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.service-cta {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.contact-section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.contact-detail h2 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.contact-address,
.contact-email,
.contact-hours {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-image-block {
    flex: 1;
    background-color: #f0f4f7;
    border-radius: 20px;
    overflow: hidden;
}

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

.additional-info {
    padding: 60px 50px;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
}

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

.additional-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 150px 50px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: #2c3e50;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 40px;
}

.thanks-next-steps ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #27ae60;
    transition: all 0.3s;
}

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

.thanks-image {
    flex: 1;
    background-color: #f0f4f7;
    border-radius: 20px;
    overflow: hidden;
}

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

.legal-page {
    padding: 150px 50px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-image-offset {
        margin-left: 0;
    }

    .intro-asymmetric,
    .story-content,
    .contact-section,
    .thanks-section,
    .service-detail-block {
        flex-direction: column;
    }

    .content-right-image {
        transform: translateY(0);
    }

    .stats-irregular {
        flex-direction: column;
    }

    .stat-card.offset {
        transform: translateY(0);
    }

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

    .form-container-offset {
        transform: rotate(0);
    }
}