* {
    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: #333;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 250px;
}

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

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

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

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

.btn-cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-cookie-reject:hover {
    background-color: #7f8c8d;
}

.nav-asymmetric {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-offset {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-block {
    flex: 1.2;
}

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

.intro-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.problem-amplification {
    background-color: #fff;
    padding: 80px 40px;
    margin: 60px 0;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.problem-list li {
    font-size: 19px;
    color: #555;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    line-height: 1;
}

.insight-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-text {
    flex: 1.3;
}

.insight-text h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-text sup a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.insight-text sup a:hover {
    text-decoration: underline;
}

.insight-image {
    flex: 0.7;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.trust-building {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.trust-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.trust-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    background-color: #34495e;
    color: #fff;
    padding: 80px 40px;
    margin: 60px 0;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 16px;
    color: #bdc3c7;
}

.benefits-reveal {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.benefits-left {
    flex: 1;
}

.benefits-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.benefits-right {
    flex: 1;
}

.benefits-right h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.benefits-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

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

.cta-mid {
    text-align: center;
    padding: 60px 40px;
    background-color: #ecf0f1;
}

.cta-btn-mid {
    display: inline-block;
    padding: 18px 48px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.composition-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.composition-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.composition-note {
    font-style: italic;
    color: #7f8c8d;
}

.pricing-reveal {
    padding: 100px 40px;
    background-color: #fff;
}

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

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

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card.highlight {
    border-color: #3498db;
    background-color: #fff;
}

.pricing-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.pricing-card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-container > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
}

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

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

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

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

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

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

.references-section h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.references-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list li a {
    color: #3498db;
    text-decoration: none;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px;
    margin: 60px auto;
    max-width: 1000px;
    border-left: 4px solid #ffc107;
}

.disclaimer {
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.page-header {
    background-color: #3498db;
    color: #fff;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

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

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mission-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.mission-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.mission-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

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

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

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

.value-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.team-section {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.team-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.team-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

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

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-details > p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.service-details ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-note {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-note p {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-info-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

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

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-map-placeholder {
    margin-top: 40px;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-additional {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-additional h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-additional p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.contact-additional a {
    color: #3498db;
    text-decoration: none;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-offset,
    .intro-offset,
    .insight-wrapper,
    .benefits-reveal,
    .about-content,
    .service-item {
        flex-direction: column;
    }

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

    .hero-content-left {
        padding-right: 0;
    }

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

    .trust-card {
        flex: 1 1 100%;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 15px);
    }

    .ad-disclosure {
        position: static;
        transform: none;
        margin: 10px 0;
    }

    .nav-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .pricing-card {
        flex: 1 1 100%;
    }

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

    .values-grid {
        flex-direction: column;
    }

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