* {
    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-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    background-color: #d4d8dc;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #34495e;
}

.cta-button-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 450px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.intro-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.benefits-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

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

.benefits-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

.materials-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 500px;
}

.materials-content {
    flex: 1;
    padding: 3rem;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.materials-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.material-option {
    margin-bottom: 2rem;
}

.material-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.material-option p {
    color: #4a5568;
    line-height: 1.7;
}

.materials-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.portfolio-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.portfolio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

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

.portfolio-item {
    flex: 1;
    min-width: 320px;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.portfolio-item p {
    color: #4a5568;
    font-size: 0.95rem;
    text-align: center;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #2c3e50;
    color: #ffffff;
    min-height: 350px;
}

.cta-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #34495e;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.services-form-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.form-split {
    display: flex;
    gap: 3rem;
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

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

.submit-button {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #34495e;
}

.site-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #3498db;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    color: #2c3e50;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #34495e;
}

.cookie-reject {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.cookie-reject:hover {
    background-color: #d5dbdd;
}

.page-header-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 450px;
}

.header-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.header-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

.header-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 500px;
}

.story-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.story-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 450px;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.approach-section {
    max-width: 1400px;
    margin: 4rem auto;
}

.approach-split {
    display: flex;
    min-height: 450px;
}

.approach-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.cta-about {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

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

.services-header {
    max-width: 1400px;
    margin: 0 auto;
}

.header-split-services {
    display: flex;
    min-height: 400px;
}

.services-intro {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.services-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-image-header {
    flex: 1;
    background-color: #d4d8dc;
}

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

.services-list {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item-split {
    display: flex;
    margin: 3rem 0;
    min-height: 400px;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 1rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    display: inline-block;
}

.service-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.pricing-info {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a252f;
}

.pricing-split {
    display: flex;
    gap: 3rem;
}

.pricing-details {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.pricing-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-details ul {
    list-style: none;
}

.pricing-details ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.pricing-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-services {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

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

.contact-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.contact-split-section {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    min-height: 500px;
}

.contact-info-block {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    background-color: #d4d8dc;
}

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

.contact-process {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.contact-process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

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

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.process-step p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-faq-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 500px;
}

.faq-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-image {
    flex: 1;
    background-color: #d4d8dc;
}

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

.contact-cta {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

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

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

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.thanks-details {
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.thanks-step {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-step p {
    font-size: 1rem;
    color: #4a5568;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

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

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

.legal-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #7f8c8d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .materials-split,
    .cta-split,
    .form-split,
    .about-story-split,
    .team-split,
    .approach-split,
    .header-split-services,
    .service-item-split,
    .pricing-split,
    .contact-split-section,
    .contact-faq-split,
    .page-header-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .materials-content,
    .cta-content,
    .cta-stats,
    .form-info,
    .form-container,
    .story-content,
    .team-content,
    .approach-text,
    .service-content,
    .contact-info-block {
        padding: 2rem;
    }

    .hero-content h1,
    .header-content h1 {
        font-size: 2rem;
    }

    .benefits-container,
    .values-grid,
    .portfolio-grid,
    .thanks-steps {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}