      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #f8f6f3 0%, #e5ded7 100%);
        min-height: 100vh;
      }
      header {
        background: linear-gradient(135deg, #b88c61 0%, #ccb9a3 100%);
        padding: 1rem 0;
        min-height: 80px;
        position: relative;
        box-shadow: 0 4px 20px rgba(184, 140, 97, 0.15);
        backdrop-filter: blur(10px);
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
        z-index: 1;
      }
      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 10;
        height: 100%;
        min-height: 70px;
      }
      .logo-container {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 20;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
      }
      .logo-container:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
      }
      .logo {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
      }
      .nav-container {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 15;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .main-nav {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
        flex-wrap: wrap;
      }
      .main-nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border: 1px solid transparent;
        white-space: nowrap;
      }
      .main-nav a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .main-nav a:hover::before {
        opacity: 1;
      }
      .main-nav a:hover {
        color: #e5ded7;
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
      footer {
        background: linear-gradient(135deg, #b88c61 0%, #ccb9a3 100%);
        color: #fff;
        padding: 3rem 0 1.5rem;
        margin-top: auto;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 18,6 18,14 10,19 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
        opacity: 0.4;
        z-index: 1;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
      }
      .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #e5ded7;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
        padding-bottom: 0.5rem;
      }
      .footer-section h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #e5ded7, transparent);
      }
      .footer-section p,
      .footer-section a {
        color: #fff;
        text-decoration: none;
        margin-bottom: 0.5rem;
        display: block;
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover {
        color: #e5ded7;
        transform: translateX(5px);
      }
      .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1.5rem;
        text-align: center;
        color: #e5ded7;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: 400px;
        margin: 0 auto;
        background: rgba(184, 140, 97, 0.95);
        color: #fff;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        display: none;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent.show {
        display: block;
        animation: slideUp 0.5s ease;
      }
      @keyframes slideUp {
        from {
          transform: translateY(100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .cookie-consent p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
      }
      .cookie-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
      }
      .cookie-btn {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.6rem 1.2rem;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
      }
      .cookie-btn.accept {
        background: rgba(229, 222, 215, 0.9);
        color: #b88c61;
        text-shadow: none;
      }
      .cookie-btn.accept:hover {
        background: #e5ded7;
      }
      @media (max-width: 768px) {
        .header-container {
          flex-direction: column;
          gap: 1rem;
          padding: 1rem;
        }
        .nav-container {
          width: 100%;
          justify-content: center;
        }
        .main-nav {
          gap: 1rem;
          justify-content: center;
        }
        .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .cookie-consent {
          left: 10px;
          right: 10px;
          bottom: 10px;
        }
      }
      @media (max-width: 480px) {
        .main-nav {
          flex-direction: column;
          gap: 0.5rem;
        }
        .main-nav a {
          padding: 0.8rem 1.5rem;
          text-align: center;
          width: 100%;
        }
        .nav-container {
          padding: 1rem;
        }
      }
      .custom-homepage-wrapper {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
      }
      .hero-section-split {
        display: flex;
        min-height: 100vh;
        align-items: center;
        background: linear-gradient(135deg, #e5ded7 0%, #ccb9a3 100%);
        margin: 0;
        padding: 0;
        position: relative;
      }
      .hero-content-left {
        flex: 1;
        padding: 80px 60px;
        z-index: 2;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 600px;
      }
      .hero-image-right {
        flex: 1;
        background-image: url("./uploads/art0.jpg");
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
      }
      .hero-title-main {
        font-size: 3.5rem;
        font-weight: 700;
        color: #2c2c2c;
        margin: 0 0 30px 0;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .hero-subtitle-text {
        font-size: 1.4rem;
        color: #555;
        margin: 0 0 40px 0;
        font-weight: 300;
        line-height: 1.5;
      }
      .hero-cta-button {
        background: linear-gradient(45deg, #b88c61, #d4a574);
        color: white;
        padding: 18px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(184, 140, 97, 0.3);
        position: relative;
        z-index: 10;
      }
      .hero-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(184, 140, 97, 0.4);
        background: linear-gradient(45deg, #a67c56, #c2945f);
      }
      .features-comparison-grid {
        padding: 100px 0;
        background: #f8f8f8;
        margin: 0;
      }
      .grid-container-custom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .section-title-unique {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 70px 0;
        font-weight: 700;
        position: relative;
      }
      .section-title-unique::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #b88c61, #ccb9a3);
        border-radius: 2px;
      }
      .comparison-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
      }
      .comparison-card-item {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 3px solid transparent;
        background-clip: padding-box;
      }
      .comparison-card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: #b88c61;
      }
      .comparison-card-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #b88c61, #ccb9a3);
      }
      .card-icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #b88c61, #ccb9a3);
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        font-weight: 700;
      }
      .card-title-text {
        font-size: 1.6rem;
        font-weight: 600;
        color: #2c2c2c;
        margin: 0 0 20px 0;
        text-align: center;
      }
      .card-description-text {
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
        text-align: center;
        margin: 0;
        padding: 0 10px;
      }
      .benefits-timeline-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #e5ded7 0%, #f5f1ec 100%);
        margin: 0;
        position: relative;
      }
      .timeline-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
      }
      .timeline-main-title {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 80px 0;
        font-weight: 700;
      }
      .timeline-visual-line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 80%;
        background: linear-gradient(180deg, #b88c61, #ccb9a3);
        top: 120px;
        border-radius: 2px;
      }
      .timeline-items-container {
        display: flex;
        flex-direction: column;
        gap: 80px;
        position: relative;
      }
      .timeline-item-block {
        display: flex;
        align-items: center;
        position: relative;
        padding: 30px;
      }
      .timeline-item-block:nth-child(odd) {
        flex-direction: row;
      }
      .timeline-item-block:nth-child(even) {
        flex-direction: row-reverse;
      }
      .timeline-content-box {
        flex: 1;
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 40px;
        position: relative;
        border: 2px solid #f0f0f0;
      }
      .timeline-content-box::before {
        content: "";
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: #b88c61;
        border-radius: 50%;
        transform: translateY(-50%);
      }
      .timeline-item-block:nth-child(odd) .timeline-content-box::before {
        right: -50px;
      }
      .timeline-item-block:nth-child(even) .timeline-content-box::before {
        left: -50px;
      }
      .timeline-item-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #2c2c2c;
        margin: 0 0 20px 0;
      }
      .timeline-item-description {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
      }
      .interactive-faq-section {
        padding: 100px 0;
        background: white;
        margin: 0;
      }
      .faq-container-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .faq-main-title {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 70px 0;
        font-weight: 700;
      }
      .faq-items-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .faq-item-container {
        border: 2px solid #f0f0f0;
        border-radius: 15px;
        background: white;
        transition: all 0.3s ease;
        overflow: hidden;
      }
      .faq-item-container:hover {
        border-color: #b88c61;
        box-shadow: 0 8px 25px rgba(184, 140, 97, 0.2);
      }
      .faq-question-header {
        padding: 30px;
        cursor: pointer;
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c2c2c;
        position: relative;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
      }
      .faq-question-header::after {
        content: "→";
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #b88c61;
        transition: transform 0.3s ease;
      }
      .faq-item-container:hover .faq-question-header::after {
        transform: translateY(-50%) rotate(90deg);
      }
      .faq-answer-content {
        padding: 25px 30px;
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
        background: #fafafa;
      }
      .expert-team-showcase {
        padding: 120px 0;
        background: linear-gradient(135deg, #ccb9a3 0%, #e5ded7 100%);
        margin: 0;
        position: relative;
      }
      .team-showcase-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .team-section-title {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 70px 0;
        font-weight: 700;
      }
      .team-expert-card {
        background: white;
        border-radius: 25px;
        padding: 50px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .team-expert-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, #b88c61, #ccb9a3);
      }
      .expert-photo-container {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-image: url("./uploads/art3.jpg");
        background-size: cover;
        background-position: center;
        margin: 0 auto 30px;
        border: 6px solid #b88c61;
        position: relative;
      }
      .expert-name-title {
        font-size: 2rem;
        font-weight: 700;
        color: #2c2c2c;
        margin: 0 0 15px 0;
      }
      .expert-role-subtitle {
        font-size: 1.2rem;
        color: #b88c61;
        margin: 0 0 30px 0;
        font-weight: 600;
      }
      .expert-description-text {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
      }
      .advanced-strategies-section {
        padding: 100px 0;
        background: white;
        margin: 0;
        position: relative;
      }
      .strategies-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .strategies-main-title {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 70px 0;
        font-weight: 700;
      }
      .strategies-grid-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .strategies-text-content {
        padding: 40px;
      }
      .strategies-highlight-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #2c2c2c;
        margin: 0 0 30px 0;
        line-height: 1.3;
      }
      .strategies-description-text {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.8;
        margin: 0 0 40px 0;
      }
      .strategies-features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 0 40px 0;
      }
      .feature-item-row {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: #f8f8f8;
        border-radius: 10px;
        border-left: 4px solid #b88c61;
      }
      .feature-icon-check {
        width: 24px;
        height: 24px;
        background: #b88c61;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 14px;
      }
      .feature-text-content {
        font-size: 1.1rem;
        color: #555;
        margin: 0;
        font-weight: 500;
      }
      .strategies-image-container {
        background-image: url("./uploads/art1.jpg");
        background-size: cover;
        background-position: center;
        min-height: 500px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
      }
      .strategies-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(184, 140, 97, 0.3),
          rgba(204, 185, 163, 0.3)
        );
      }
      .success-journey-section {
        padding: 120px 0;
        background: linear-gradient(135deg, #e5ded7 0%, #f5f1ec 100%);
        margin: 0;
        position: relative;
      }
      .journey-content-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .journey-title-main {
        text-align: center;
        font-size: 2.8rem;
        color: #2c2c2c;
        margin: 0 0 70px 0;
        font-weight: 700;
      }
      .journey-visual-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .journey-image-side {
        background-image: url("./uploads/art2.jpg");
        background-size: cover;
        background-position: center;
        min-height: 600px;
        border-radius: 25px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }
      .journey-image-side::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(184, 140, 97, 0.2),
          rgba(204, 185, 163, 0.2)
        );
      }
      .journey-content-side {
        padding: 40px;
      }
      .journey-subtitle-text {
        font-size: 2.2rem;
        font-weight: 700;
        color: #2c2c2c;
        margin: 0 0 30px 0;
        line-height: 1.3;
      }
      .journey-description-main {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.8;
        margin: 0 0 40px 0;
      }
      .journey-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 0 0 50px 0;
      }
      .stat-box-item {
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid #f0f0f0;
        transition: all 0.3s ease;
      }
      .stat-box-item:hover {
        border-color: #b88c61;
        transform: translateY(-5px);
      }
      .stat-number-large {
        font-size: 2.5rem;
        font-weight: 700;
        color: #b88c61;
        margin: 0 0 10px 0;
      }
      .stat-label-text {
        font-size: 1rem;
        color: #666;
        margin: 0;
        font-weight: 500;
      }
      .journey-cta-button {
        background: linear-gradient(45deg, #b88c61, #d4a574);
        color: white;
        padding: 18px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(184, 140, 97, 0.3);
        position: relative;
        z-index: 10;
      }
      .journey-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(184, 140, 97, 0.4);
        background: linear-gradient(45deg, #a67c56, #c2945f);
      }
      @media (max-width: 768px) {
        .custom-homepage-wrapper {
          overflow-x: hidden;
        }
        .hero-section-split {
          flex-direction: column;
          min-height: auto;
        }
        .hero-content-left {
          padding: 60px 30px;
          text-align: center;
        }
        .hero-image-right {
          min-height: 400px;
          clip-path: none;
        }
        .hero-title-main {
          font-size: 2.5rem;
          margin-bottom: 20px;
        }
        .hero-subtitle-text {
          font-size: 1.2rem;
          margin-bottom: 30px;
        }
        .grid-container-custom,
        .timeline-content-wrapper,
        .faq-container-wrapper,
        .team-showcase-container,
        .strategies-content-wrapper,
        .journey-content-container {
          padding: 0 20px;
        }
        .section-title-unique,
        .timeline-main-title,
        .faq-main-title,
        .team-section-title,
        .strategies-main-title,
        .journey-title-main {
          font-size: 2.2rem;
          margin-bottom: 40px;
        }
        .comparison-cards-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .comparison-card-item {
          padding: 30px 20px;
        }
        .timeline-visual-line {
          display: none;
        }
        .timeline-items-container {
          gap: 40px;
        }
        .timeline-item-block {
          flex-direction: column !important;
          padding: 20px;
        }
        .timeline-content-box {
          margin: 0;
        }
        .timeline-content-box::before {
          display: none;
        }
        .faq-question-header {
          padding: 20px;
          font-size: 1.1rem;
        }
        .faq-answer-content {
          padding: 20px;
        }
        .team-expert-card {
          padding: 30px 20px;
        }
        .expert-photo-container {
          width: 120px;
          height: 120px;
        }
        .expert-name-title {
          font-size: 1.8rem;
        }
        .strategies-grid-layout,
        .journey-visual-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .strategies-text-content,
        .journey-content-side {
          padding: 20px;
        }
        .strategies-image-container,
        .journey-image-side {
          min-height: 300px;
        }
        .journey-stats-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .features-comparison-grid,
        .benefits-timeline-section,
        .interactive-faq-section,
        .expert-team-showcase,
        .advanced-strategies-section,
        .success-journey-section {
          padding: 60px 0;
        }
      }
      @media (max-width: 480px) {
        .hero-title-main {
          font-size: 2rem;
        }
        .hero-subtitle-text {
          font-size: 1.1rem;
        }
        .section-title-unique,
        .timeline-main-title,
        .faq-main-title,
        .team-section-title,
        .strategies-main-title,
        .journey-title-main {
          font-size: 1.8rem;
        }
        .comparison-card-item {
          padding: 25px 15px;
        }
        .timeline-item-title {
          font-size: 1.5rem;
        }
        .strategies-highlight-title,
        .journey-subtitle-text {
          font-size: 1.8rem;
        }
        .expert-name-title {
          font-size: 1.6rem;
        }
        .stat-number-large {
          font-size: 2rem;
        }
      }