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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--light-bg);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-right {
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.value-section {
    padding: 80px 0;
    background: var(--white);
}

.value-header {
    text-align: center;
    margin-bottom: 60px;
}

.value-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview-split {
    display: flex;
}

.services-left {
    flex: 1;
    padding: 80px 60px;
    background: var(--primary-color);
    color: var(--white);
}

.services-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-item p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 1;
}

.services-right {
    flex: 1;
}

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

.process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-split {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

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

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 120px;
    text-align: center;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-split {
    display: flex;
}

.testimonials-left {
    flex: 1;
}

.testimonials-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-right {
    flex: 1;
    padding: 80px 60px;
    background: var(--light-bg);
}

.testimonials-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 8px;
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.why-content p {
    font-size: 17px;
    line-height: 1.7;
}

.cta-section-split {
    display: flex;
}

.cta-left {
    flex: 1;
    padding: 80px 60px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.cta-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background: var(--light-bg);
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    padding: 60px 0;
}

.service-block {
    margin-bottom: 80px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-info,
.service-pricing {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.price-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.price-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.price-card.featured .price {
    color: var(--white);
}

.price-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.price-includes {
    list-style: none;
}

.price-includes li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.price-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price-card.featured .price-includes li:before {
    color: var(--white);
}

.cta-banner {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
}

.about-intro-split {
    display: flex;
}

.about-left {
    flex: 1;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    flex: 1;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
}

.experience-split {
    display: flex;
}

.experience-left {
    flex: 1;
    padding: 80px 60px;
    background: var(--white);
}

.experience-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.experience-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-right {
    flex: 1;
}

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

.approach-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-item-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.7;
}

.team-split {
    display: flex;
    gap: 60px;
}

.team-left,
.team-right {
    flex: 1;
}

.team-member {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
}

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background: var(--light-bg);
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.contact-map {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
}

.contact-map h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-map p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-right {
    flex: 1;
}

.contact-image {
    height: 100%;
}

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

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.final-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.success-icon {
    color: var(--success-color);
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-submessage {
    font-size: 16px;
    color: #666;
}

.next-steps {
    padding: 80px 0;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    color: var(--accent-color);
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
}

.explore-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.explore-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.explore-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.explore-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.explore-link:hover {
    text-decoration: underline;
}

.final-message {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.final-message p {
    font-size: 17px;
}

.final-message a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.final-message a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .testimonials-split,
    .cta-section-split,
    .service-split,
    .about-intro-split,
    .experience-split,
    .approach-item-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right {
        min-height: 400px;
    }

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

    .page-hero h1 {
        font-size: 38px;
    }

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

    .why-item,
    .why-item.reverse {
        flex-direction: column;
    }

    .step-split,
    .step-split.reverse {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        gap: 16px;
        font-size: 14px;
    }

    .hero-left,
    .intro-right,
    .services-left,
    .testimonials-right,
    .cta-left,
    .cta-right,
    .about-right,
    .experience-left,
    .contact-left {
        padding: 40px 30px;
    }

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

    .page-hero h1 {
        font-size: 32px;
    }

    .value-header h2,
    .process-section h2,
    .why-us-section h2,
    .values-section h2,
    .approach-section h2,
    .team-section h2,
    .faq-section h2,
    .next-steps h2,
    .explore-section h2,
    .cta-banner h2,
    .cta-section h2,
    .final-cta h2 {
        font-size: 32px;
    }

    .faq-grid,
    .steps-grid,
    .explore-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .main-nav ul {
        gap: 12px;
        font-size: 13px;
    }

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

    .page-hero h1 {
        font-size: 28px;
    }

    .hero-subtitle,
    .page-subtitle {
        font-size: 16px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-number {
        font-size: 48px;
    }
}