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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.main-nav a:hover {
    color: #e67e22;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background-color: #ecf0f1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c3e50;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.ad-disclosure-mobile {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #ecf0f1;
    text-align: center;
    border-radius: 4px;
}

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

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

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

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

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

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.problem-section {
    background-color: #f8f9fa;
}

.problem-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-visual {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.problem-text a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.problem-text a:hover {
    text-decoration: underline;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.insight-section {
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.insight-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.insight-list li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.insight-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.trust-section {
    background-color: #ecf0f1;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-section {
    background-color: #ffffff;
}

.benefits-visual {
    flex: 1;
}

.benefits-content {
    flex: 1;
}

.benefits-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.benefits-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
}

.benefits-list li strong {
    color: #e67e22;
}

.benefits-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.composition-section {
    background-color: #f8f9fa;
}

.composition-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.composition-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.composition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.composition-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.composition-item h3 {
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.composition-item p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0;
}

.composition-item a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.composition-item a:hover {
    text-decoration: underline;
}

.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.services-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: #7f8c8d;
    padding: 0 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    color: #e67e22;
    font-weight: 700;
    padding: 1rem 1.5rem;
}

.btn-select-service {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.form-section {
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
}

.order-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #e67e22;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #34495e;
}

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

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #5f6a6a;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-story {
    background-color: #ffffff;
}

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

.about-text p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.about-values {
    background-color: #f8f9fa;
}

.about-values h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.8rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: #34495e;
}

.about-approach {
    background-color: #ffffff;
}

.about-approach h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-step {
    flex: 1 1 calc(33.333% - 2rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.approach-step p {
    font-size: 1rem;
    color: #34495e;
}

.about-team {
    background-color: #f8f9fa;
}

.about-team h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-team p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.about-cta {
    background-color: #2c3e50;
    color: #ffffff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 1rem 3rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.services-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.services-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-full {
    background-color: #ffffff;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-full-image {
    flex: 1;
}

.service-full-content {
    flex: 1;
}

.service-full-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-full-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-full-content h3 {
    font-size: 1.3rem;
    color: #e67e22;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-full-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-full-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-full-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 1.5rem;
}

.service-price-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-unit {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.services-cta {
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
}

.contact-info-item {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.contact-cta {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.order-details {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

.order-details p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.order-details strong {
    color: #e67e22;
}

.legal-page {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

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

.legal-content h2 {
    font-size: 2rem;
    color: #e67e22;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.75rem;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .problem-content {
        flex-direction: column;
    }

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

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

    .composition-item {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .approach-step {
        flex: 1 1 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .service-full-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}
