:root {
    --color-primary: #546dd4;
    --color-whatsapp: #25D366;
    --color-yellow: #fed24d;
    --color-teal: #03d0c1;
    --color-purple: #ae7dfd;
    --color-dark: #343e61;
    --color-light: #f5f6f7;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    padding-top: 70px;
    line-height: 34px;
    font-weight: 400;
    font-size: 18px;
}
/* Header styles */
 /* Header styles */
 .header {
    background: #ffffff;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 28, 100, 0.1);
    min-height: 95px;
}

/* Logo styles */
.logo {
    color: #2c5aa0;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-left: 0;
    padding-left: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo h2 {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.8rem;
}

.logo-img {
    height: 45px;
    width: auto;
    margin-right: 0px;
    object-fit: contain;
    padding-left: 30px;
}

.logo .care-text {
    font-size: 2.5rem;
    color: orange;
    font-weight: 900;
}

.logo .essays-text {
    text-decoration: underline;
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c5aa0;
    padding-top: 8px;
    text-transform: uppercase;
    
}

/* Contact icons */
.contact-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    order: 2;
    margin-top: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.email-icon {
    background: rgba(228, 10, 10, 0.1);
    color: #d44638;
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.email-icon:hover {
    background: #666666;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-icon {
    background: #25d366;
    color: white;
}

.whatsapp-icon:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* Order Button - Fixed to the right */
.make-order-btn {
    background: linear-gradient(180deg,#ff6d1b,#ff6d1b);
    border: 1px solid #df5609;
    border-radius: 6px;
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
    color: #fff;
    padding: 0 22px;
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    height: 64px;
    justify-content: center;
    line-height: 50px;
    position: relative;
    transition: all .5s;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    margin: 0 30px; 
    order: 4;
    width: 170px;
}

.make-order-btn:hover {
    background: linear-gradient(180deg,#ff5f1b,#fd450b);
    border: 1px solid #d23c0d;
    border-radius: 6px;
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
    transform: translateY(-1px);
}

.make-order-btn.big {
    padding: 0 26px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    order: 3;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding-right: 0;
}

.nav-item {
    margin: 0;
    position: relative;
    list-style: none;
}

.nav-link {
    color: #001c64;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 0.5rem;
    display: block;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 224, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #0070e0;
    background-color: rgba(0, 112, 224, 0.05);
    transform: translateY(-2px);
}

/* Dropdown menu */
.services-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    background: #ffffff;
    width: 900px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 1.8rem;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(0, 28, 100, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-category {
    position: relative;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 28, 100, 0.02);
    border: 1px solid rgba(0, 28, 100, 0.1);
    backdrop-filter: blur(5px);
}

.service-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 28, 100, 0.1);
    border-color: rgba(0, 112, 224, 0.2);
    background: rgba(0, 112, 224, 0.05);
}

.service-category h4 {
    color: #001c64;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, #4da3ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-category:hover h4::after {
    width: 60px;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 0.4rem;
    position: relative;
}

.service-list a {
    color: #001c64;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    position: relative;
    border-left: 3px solid transparent;
}

.service-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #0070e0, #4da3ff);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.service-list a:hover {
    color: #0070e0;
    background: rgba(0, 112, 224, 0.1);
    transform: translateX(8px);
    border-left-color: #0070e0;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 112, 224, 0.15);
}

.service-list a:hover::before {
    height: 100%;
}

.dropdown:hover .services-dropdown,
.services-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown > .nav-link::after {
    content: '▽';
    display: inline-block;
    margin-left: 6px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #001c64;
}

.dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
    color: #0070e0;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    margin-left: 10px;
    color: #001c64;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    order: 5;
}

.hamburger:hover {
    background-color: rgba(0, 112, 224, 0.1);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 1400px) {
    .services-dropdown {
        width: 800px;
        right: -50px;
    }
}

@media (max-width: 1280px) {
    .make-order-btn {
        padding: 0 15px;
        height: 42px; /* Adjusted height */
    }
    
    .nav-link {
        font-size: 14px;
        padding: 0.6rem 0.4rem;
    }
}

@media (max-width: 1200px) {
    .services-dropdown {
        width: 700px;
        right: -100px;
    }
    
    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 0.5rem 0.4rem;
    }
}

@media (max-width: 1024px) {
    .services-dropdown {
        width: 600px;
        right: -150px;
    }
    
    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 0.5rem 0.3rem;
    }
    
    .contact-icons {
        gap: 5px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .make-order-btn {
        padding: 0 14px;
        font-size: 13px;
        height: 38px; /* Adjusted height */
        margin: 0 0 0 6px; /* Reduced left margin */
    }
    
    .logo-img {
        height: 40px;
        margin-right: 6px;
    }
    
    .logo .care-text {
        font-size: 2.2rem;
    }
    
    .logo .essays-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        padding: 0.6rem 1rem;
        min-height: 50px;
        flex-wrap: nowrap;
    }
    
    .logo {
        order: 1;
        flex: 1;
        padding-left: 0;
        padding-left: 0.5rem;
    }
    .logo h2 {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 32px;
        margin-right: 0px;
        padding-left: 10px;
    }
    
    .logo .care-text {
        font-size: 1.6rem;
    }
    
    .logo .essays-text {
        font-size: 1.4rem;
    }
    
    
    .contact-icons {
        order: 2;
        padding-right: 0.5rem;
        gap: 6px;
        margin: 0 5px;
    }
    
    .make-order-btn {
        order: 3;
        margin: 0 5px;
        padding: 0 12px;
        font-size: 16px;
        height: 50px; /* Adjusted height */
        display: inline-flex !important;
        width: 120px;
    }
    
    .navbar {
        order: 4;
    }
    
    .hamburger {
        display: flex;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        order: 5;
        margin-left: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 320px;
        max-width: 90vw;
        height: calc(100vh - 60px);
        background: #ffffff;
        flex-direction: column;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem 0;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(0, 28, 100, 0.1);
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        align-items: stretch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 28, 100, 0.1);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link:hover {
        transform: none;
    }
    
    .services-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
        background: #f8f9fa;
        width: 100%;
        overflow: hidden;
        margin-top: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(0, 28, 100, 0.1);
        transition: all 0.3s ease, max-height 0.4s ease;
    }
    
    .dropdown.active .services-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 60vh;
        overflow-y: auto;
        padding: 0.5rem 1rem;
    }
    
    .services-row {
        display: block;
    }
    
    .service-category {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
    }
    
    .service-category h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .service-list a {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        border-left: none;
        border-bottom: 1px solid rgba(0, 28, 100, 0.05);
    }
    
    .service-list a:hover {
        transform: none;
        padding-left: 0.9rem;
    }
    
    .service-list li:last-child a {
        border-bottom: none;
    }

    .dropdown > .nav-link::after {
        transition: transform 0.3s ease;
    }

    .dropdown.active > .nav-link::after {
        transform: rotate(180deg);
        color: #0070e0;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0.4rem 0.8rem;
        min-height: 50px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
    }
    
    .make-order-btn {
        padding: 0 10px;
        font-size: 11px;
        height: 32px;
        margin: 0 3px;
        width: 50px;
    }
    
    .contact-icons {
        margin: 0 3px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 280px;
    }
    
    .contact-icons {
        gap: 4px;
        padding-right: 0.4rem;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 15px;
    }
    
    .make-order-btn {
        padding: 0 8px;
        font-size: 10px;
        height: 30px;
        margin: 0 2px;
        width: 90px;
    }
    
    .hamburger {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        margin-left: 3px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo .care-text {
        font-size: 1.8rem;
    }
    
    .logo .essays-text {
        font-size: 1.2rem;
    }
}

 /* ========== Base Styles ========== */
.services-section {
    padding: 50px 20px;
    text-align: center; 
    background-color: #ffff; /* White section background */
    color: #001c64;
    border-bottom: gray;
  }
  
  .services-section h2 {
    
    font-size: 2.8rem;
    color: #001c64;
    margin: 0;
    font-weight: 600;
    position: relative;



  }
  
  .services-section h2 span {
    color: #0056b3;
    
  }
  
  /* ========== Responsive Grid ========== */
  .services-grid {
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ========== Service Card ========== */
  .service-card {
    background-color: #f2f6ff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #001c64;
    display: block;
    transition: background-color 0.3s ease;
  }
  
  .service-card:hover {
    background-color: #e6efff;
  }
  
  .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  /* ========== Updated Service Title ========== */
  .service-title {
    background-color: #555555;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
  }
  
  /* ========== Mobile Responsive ========== */
  @media (max-width: 768px) {
    .services-section {
      padding: 40px 15px;
    }
  
    .services-section h2 {
      font-size: 24px;
    }
  
    .services-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  
    .service-title {
      font-size: 15px;
      padding: 10px 14px;
    }
  }
  
  @media (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .services-section h2 {
      font-size: 20px;
    }
  
    .service-card img {
      height: 160px;
    }
  
    .service-title {
      font-size: 14px;
      padding: 10px 12px;
    }
  }


  .component_testimonials {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.component_width {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.component_title {
    text-align: center;
    margin-bottom: 4rem;
}

.component_title h2 {
    color: var(--primary-color);
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.component_title h2 span {
    color: var(--text-color);
}

.component_content {
    position: relative;
}

.testimonials_carousel_wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials_item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 380px;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.testimonials_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonials_item_rating {
    margin-bottom: 1.5rem;
}

.rating_static {
    color: #ffd700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.testimonials_item_content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 34px;
    margin-bottom: 2rem;
    font-size: 18px;
    font: 400;
}

.testimonials_item_info {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.username span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.username p {
    color: #666;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.review_type {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    font-weight: 500;
}

.testimonials_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: nowrap; /* Ensure single line */
    white-space: nowrap; /* Prevent wrapping */
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    bottom: 0 !important;
    flex-grow: 1; /* Allow pagination to take available space */
}

.swiper-pagination-bullets {
    position: relative;
    display: flex;
    gap: 15px;

}

.read_all_block {
    text-align: right;
    margin-left: 20px; /* Add spacing between pagination and button */
    flex-shrink: 0; /* Prevent button from shrinking */
}

.read_all_testimonials {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap; /* Keep button text in one line */
}

.read_all_testimonials:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}

.read_all_testimonials i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read_all_testimonials:hover i {
    transform: translateX(3px);
}

/* Swiper navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: white !important;
    background: #007aff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 16px !important;
    height: 16px !important;
    transition: all 0.3s ease;
    margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px !important;
    border-radius: 8px !important;
}

@media (max-width: 1200px) {
    .component_width {
        padding: 0 30px;
    }
    
    .testimonials_carousel_wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .testimonials_item {
        min-height: 420px;
    }
    
    .testimonials_footer {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }
    
    .swiper-pagination {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .read_all_block {
        order: 2;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .component_testimonials {
        padding: 3rem 0;
    }
    
    .component_title h2 {
        font-size: 2.25rem;
    }
    
    .testimonials_carousel_wrapper {
        padding: 0;
    }
    
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    
    .testimonials_item {
        min-height: auto;
        margin: 0 10px;
        padding: 2rem;
    }
}
   /* ===== Component Styles ===== */
   .academic-assistance {
    padding: 60px 0;
}

.ac-content-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    

}

.ac-writing-solutions {
    background-color: #f0f2f5;
    background-image: url(/assets/images/professional_essay_writing.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 29px;
    padding-bottom: 59px;
}

.ac-section-heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #001c64;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ac-section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
}

.ac-solutions-content {
    display: flex;
    justify-content: flex-end;
}

.ac-benefits-list {
    padding-top: 38px;
    width: 100%;
    max-width: 610px;
}

.ac-benefit-item {
    margin-top: 33px;
    padding-left: 80px;
    position: relative;
}

.ac-benefit-item:first-child {
    margin-top: 0;
}

.ac-benefit-marker {
    border-radius: 50%;
    height: 54px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001435;
    font-family: var(--font-main);
    font-weight: bold;
    font-size: 1.5rem;
}

.ac-benefit-item:nth-child(1) .ac-benefit-marker {
    background-color: var(--color-yellow);
}

.ac-benefit-item:nth-child(2) .ac-benefit-marker {
    background-color: var(--color-teal);
}

.ac-benefit-item:nth-child(3) .ac-benefit-marker {
    background-color: var(--color-purple);
}

/* ===== Button Styles ===== */
.ac-action-buttons {
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 610px;
}

.ac-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.ac-cta-button--whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
}

.ac-cta-button--email {
    background-color: var(--color-primary);
    color: white;
}

.ac-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.ac-cta-button:hover .button-icon {
    transform: translateX(3px);
}

.ac-cta-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.ac-button-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .ac-writing-solutions {
        background-image: none;
        padding-bottom: 30px;
    }

    .ac-solutions-content {
        justify-content: center;
    }

    .ac-benefits-list {
        padding-top: 20px;
    }

    .ac-benefit-item {
        padding-left: 70px;
        margin-top: 25px;
    }

    .ac-benefit-marker {
        height: 48px;
        width: 48px;
        top: 0;
    }
}

@media (max-width: 480px) {
    .ac-section-heading {
        font-size: 1.8rem;
    }

    .ac-benefit-item {
        padding-left: 60px;
    }

    .ac-benefit-marker {
        height: 42px;
        width: 42px;
        font-size: 1.2rem;
    }

    .ac-cta-button {
        width: 100%;
        padding: 12px 24px;
    }
}
  

 
   /* Component container styles */
   .chose_component {
    padding: 80px 0;
}

.chose_component_width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.chose_component_title {
    text-align: center;
    margin-bottom: 20px;
}

.chose_component_title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.chose_component_title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

/* Why Choose Us specific styles */
.component_why_choose_us {
    padding-bottom: 47px;
    background-color: hsl(213, 33%, 94%);
    color: #333;
    position: relative;
    overflow: hidden;
}

.component_why_choose_us::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"><circle cx="20" cy="20" r="2" fill="rgba(44,62,80,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(44,62,80,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(44,62,80,0.05)"/></svg>');
    pointer-events: none;
}

.component_why_choose_us .chose_component_title h2 {
    color: #2c3e50;
}

.component_why_choose_us .chose_component_title h2::after {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.component_why_choose_us .chose_component_content {
    padding-top: 37px;
    position: relative;
    z-index: 1;
}

.component_why_choose_us .chose_whatsapp_button {
    font-size: 18px;
    margin: 26px auto 0;
    width: 280px;
    max-width: 100%;
}

.why_choose_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
}

.why_choose_item {
    max-width: 313px;
    padding-top: 128px;
    text-align: center;
    width: 100%;
    background-size: 80px 80px;
    background-repeat: no-repeat;
    background-position: center top 21px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 128px 20px 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why_choose_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why_choose_item h3,
.why_choose_item span {
    font-size: 26px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why_choose_item p {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Icon backgrounds - Updated for better visibility on white background */
.why_choose_item:first-child {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><path d="M50 15L57 35H78L62 47L69 67L50 55L31 67L38 47L22 35H43L50 15Z"/><circle cx="50" cy="80" r="3"/></svg>');
    background-position: center 21px;
}

.why_choose_item:nth-child(2) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><circle cx="50" cy="35" r="20" stroke="%23667eea" stroke-width="3" fill="none"/><text x="50" y="42" text-anchor="middle" font-size="16" fill="%23667eea">$</text><rect x="30" y="55" width="40" height="25" rx="5" fill="%23667eea"/><text x="50" y="70" text-anchor="middle" font-size="8" fill="white">AFFORDABLE</text></svg>');
    background-position: center top;
}

.why_choose_item:nth-child(3) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><rect x="25" y="40" width="50" height="35" rx="5" stroke="%23667eea" stroke-width="2" fill="none"/><rect x="40" y="30" width="20" height="15" rx="3" stroke="%23667eea" stroke-width="2" fill="none"/><circle cx="42" cy="52" r="2"/><circle cx="58" cy="52" r="2"/><rect x="45" y="60" width="10" height="8" rx="2"/></svg>');
    background-position: center 13px;
}

.why_choose_item:nth-child(4) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><rect x="20" y="25" width="60" height="50" rx="5" stroke="%23667eea" stroke-width="2" fill="none"/><path d="M30 35 L45 50 L70 25" stroke="%23667eea" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/><circle cx="25" cy="80" r="3"/><circle cx="50" cy="85" r="2"/><circle cx="75" cy="80" r="3"/></svg>');
    background-position: center 21px;
}

/* New icons for the additional items */
.why_choose_item:nth-child(5) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><rect x="20" y="30" width="60" height="40" rx="8" stroke="%23667eea" stroke-width="2" fill="none"/><path d="M30 45 L45 55 L70 35" stroke="%23667eea" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/><circle cx="50" cy="20" r="8" stroke="%23667eea" stroke-width="2" fill="none"/><path d="M45 15 L50 10 L55 15" stroke="%23667eea" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center 21px;
}

.why_choose_item:nth-child(6) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23667eea"><circle cx="50" cy="35" r="15" stroke="%23667eea" stroke-width="2" fill="none"/><circle cx="45" cy="32" r="2" fill="%23667eea"/><circle cx="55" cy="32" r="2" fill="%23667eea"/><path d="M45 40 Q50 45 55 40" stroke="%23667eea" stroke-width="2" fill="none" stroke-linecap="round"/><rect x="35" y="55" width="30" height="20" rx="3" stroke="%23667eea" stroke-width="2" fill="none"/><path d="M40 60 L45 65 L60 65" stroke="%23667eea" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center 21px;
}

/* Button styles */
.chose_button {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
   
}

/* WhatsApp Button Styles */
.chose_whatsapp_button {
    background-color: #25D366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.chose_whatsapp_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.chose_whatsapp_button:hover::before {
    left: 100%;
}

.chose_whatsapp_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background-color: #128C7E;
}

.chose_whatsapp_icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive design */
@media (max-width: 768px) {
    
    .chose_component_title h2 {
        font-size: 2rem;
    }

    .why_choose_items {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why_choose_item {
        max-width: 100%;
        padding-top: 100px;
    }
    
    .why_choose_item h3 {
        font-size: 22px;
    }
    
    .component_why_choose_us .whatsapp_button {
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

}

@media (max-width: 480px) {
    .chose_component_width {
        padding: 0 15px;
    }
    
    .why_choose_item {
        padding-top: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .why_choose_item h3 {
        font-size: 20px;
    }
    
    .why_choose_item p {
        font-size: 14px;
    }
    
    .chose_component_title h2 {
        font-size: 1.8rem;
    }

  

    .chose_whatsapp_button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .chose_whatsapp_icon {
        width: 20px;
        height: 20px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why_choose_item {
    animation: fadeInUp 0.6s ease forwards;
}

.why_choose_item:nth-child(1) { animation-delay: 0.1s; }
.why_choose_item:nth-child(2) { animation-delay: 0.2s; }
.why_choose_item:nth-child(3) { animation-delay: 0.3s; }
.why_choose_item:nth-child(4) { animation-delay: 0.4s; }
.why_choose_item:nth-child(5) { animation-delay: 0.5s; }
.why_choose_item:nth-child(6) { animation-delay: 0.6s; }

/* Component container styles */
.how_component {
    padding: 80px 0;
  }
  
  .how_component_width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .how_component_title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .how_component_title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
  }
  
  .how_component_title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
  }
  
  /* How It Works Section Styles */
  .component_how_it_works {
  background: rgba(255, 255, 255, 0.9);
  color: #001c64;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  }
  
  .component_how_it_works::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"><circle cx="10" cy="10" r="1" fill="rgba(0,20,53,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(0,20,53,0.08)"/><circle cx="30" cy="70" r="1" fill="rgba(0,20,53,0.1)"/><circle cx="70" cy="90" r="1.2" fill="rgba(0,20,53,0.06)"/></svg>');
  pointer-events: none;
  }
  
  .component_how_it_works .how_component_title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
  }
  
  .component_how_it_works .how_component_title h2 {
  color: #001435;
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  }
  
  .component_how_it_works .how_component_title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 2px;
  }
  
  .component_how_it_works .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0;
  font-weight: 300;
  }
  
  .how_it_works_container {
  position: relative;
  z-index: 2;
  }
  
  .steps_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
  position: relative;
  }
  
  .step_item {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: rgba(0, 20, 53, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 20, 53, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .step_item:hover {
  transform: translateY(-10px);
  background: rgba(0, 20, 53, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .step_container {
  border-radius: 50%;
  border: 3px solid rgba(0, 20, 53, 0.3);
  height: 195px;
  width: 195px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 35px;
  transition: all .26s ease;
  padding: 49px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  }
  
  .step_item:hover .step_container {
  border-color: #ff6b35;
  }
  
  .step_number {
  width: 90px;
  height: 90px;
  background: #424242;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: all .26s ease;
  overflow: hidden;
  }
  
  .step_number::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #001435 0%, #ff6b35 50%, rgba(0, 20, 53, 0.1) 100%);
  transition: top 0.3s ease;
  z-index: 1;
  }
  
  .step_item:hover .step_number::before {
  top: 0;
  }
  
  .step_item:hover .step_number {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  }
  
  .step_number span {
  font-size: 3rem;
  font-weight: 800;
  color: #A020F0 !important;;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  }
  
  .step_content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #A020F0 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  }
  
  .step_content p {
  font-size: 14px;
  line-height: 1.6;
  color: #001435;
  font-weight: 450;
  }
  
  /* Connector lines for desktop */
  .step_connector {
  display: none;
  }
  
  @media (min-width: 1024px) {
  .steps_wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  }
  
  .step_connector {
  display: block;
  position: absolute;
  top: 70px;
  right: -30px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,20,53,0.4), rgba(0,20,53,0.2));
  z-index: 1;
  }
  
  .step_connector::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0,20,53,0.4);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  }
  
  .step_item:last-child .step_connector {
  display: none;
  }
  }
  
  /* Call to Action Section */
  .how_cta_section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 30px;
  background: rgba(0, 20, 53, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 20, 53, 0.1);
  }
  
  .how_cta_section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #001435;
  }
  
  .how_cta_section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #606060;
  font-weight: 300;
  }
  
  .how_cta_section .how_whatsapp_button {
  display: inline-flex;
  margin: 0;
  width: auto;
  min-width: 250px;
  font-size: 1.1rem;
  padding: 18px 35px;
  background-color: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  }
  
  .how_whatsapp_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  }
  
  .how_whatsapp_button:hover::before {
  left: 100%;
  }
  
  .how_whatsapp_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background-color: #128C7E;
  }
  
  .how_whatsapp_icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  }
  
  /* Component container styles */
  .gow_component {
  padding: 80px 0;
  }
  
  .how_component_width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  }
  
  /* Animation for steps */
  @keyframes slideInUp {
  from {
  opacity: 0;
  transform: translateY(50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  
  .step_item {
  animation: slideInUp 0.8s ease forwards;
  }
  
  .step_item:nth-child(1) { animation-delay: 0.1s; }
  .step_item:nth-child(2) { animation-delay: 0.2s; }
  .step_item:nth-child(3) { animation-delay: 0.3s; }
  .step_item:nth-child(4) { animation-delay: 0.4s; }
  
  /* Responsive design */
  @media (max-width: 768px) {
  .component_how_it_works .how_component_title h2 {
  font-size: 2.2rem;
  }
  
  .component_how_it_works .subtitle {
  font-size: 1.1rem;
  }
  
  .steps_wrapper {
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
  }
  
  .step_item {
  padding: 25px 15px;
  }
  
  .step_container {
  height: 150px;
  width: 150px;
  padding: 30px;
  }
  
  .step_number {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  }
  
  .step_number span {
  font-size: 1.8rem;
  }
  
  .step_content h3 {
  font-size: 1.2rem;
  white-space: normal;
  }
  
  .step_content p {
  font-size: 0.95rem;
  }
  
  .how_cta_section {
  margin-top: 40px;
  padding: 30px 20px;
  }
  
  .how_cta_section h3 {
  font-size: 1.6rem;
  }
  
  .how_cta_section p {
  font-size: 1rem;
  }
  
  .how_cta_section .how_whatsapp_button {
  min-width: 200px;
  font-size: 1rem;
  padding: 15px 25px;
  }
  }
  
  @media (max-width: 480px) {
  .how_component_width {
  padding: 0 15px;
  }
  
  .component_how_it_works .how_component_title h2 {
  font-size: 1.8rem;
  }
  
  .step_container {
  height: 120px;
  width: 120px;
  padding: 20px;
  }
  
  .step_number {
  width: 60px;
  height: 60px;
  }
  
  .step_number span {
  font-size: 1.5rem;
  }
  
  .step_content h3 {
  font-size: 1.1rem;
  }
  
  .step_content p {
  font-size: 0.9rem;
  }
  
  .cta_section h3 {
  font-size: 1.4rem;
  }
  
  .how_cta_section .how_whatsapp_button {
  min-width: 180px;
  font-size: 0.9rem;
  }
  
  .how_whatsapp_icon {
  width: 20px;
  height: 20px;
  }
  }

  .green_component_width {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.green_component_cta {
    background: url(/assets/images/cta_bgda2c.webp) center no-repeat;
    background-size: cover;
    background-position: center;
    height: 213px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #efefef;
}

.green_component_cta .green_component_title {
    text-align: center;
    margin-bottom: 20px;
}

.green_component_title h2, .green_component_title span {
    font-size: 38px;
    font-weight: 800;
    color: #A020F0;
    line-height: 60px;
    position: relative;
    margin: 0;
}

.green_component_cta .green_component_content {
    margin-top: 0;
    text-align: center;
    width: 100%;
}

.green_component_content p {
    margin: 0 0 25px 0;
    font-size: 18px;
    line-height: 1.6;   
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.green_cta_buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.green_cta_buttons .green_button {
    font-size: 20px;
    width: 250px;
    text-decoration: none;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 10px;
    font-weight: 600;
}

.green_cta_buttons .green_orange_button {
    margin-right: 0;
}

.green_orange_button {
    background: #25D366;
    background: linear-gradient(150deg, #25D366, #128C7E);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    height: 25px;
    

}

.green_orange_button:hover {
    background: linear-gradient(150deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.green_orange_button {
    border-radius: 8px;
    color: #fff;
    border: none;
    cursor: pointer;
}

.green_whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 1580px) {
    .green_component_cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .green_component_cta {
        height: 350px;
        padding: 30px 0;
    }
    
    .green_component_title h2, .green_component_title span {
        font-size: 28px;
        line-height: 40px;
    }
    
    .green_component_content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .green_cta_buttons .green_button {
        width: 220px;
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .green_whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .green_component_cta {
        height: 300px;
        padding: 20px 0;
    }
    
    .green_component_title h2, .green_component_title span {
        font-size: 24px;
        line-height: 32px;
    }
    
    .green_component_content p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .cta_buttons .green_button {
        width: 200px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .green_whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}

/* Footer Styles */
.footer_width {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
}

.footer_top_block {
    background-color: #464545;
    padding: 45px 0 41px;
}

.footer_top_block .footer_width {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_left_block {
    border-right: 1px solid hsla(0,0%,100%,.26);
    flex: 1;
    padding-right: 40px;
}

.footer_right_block {
    padding: 10px 0 0 0;
    width: 420px;
    flex-shrink: 0;
}

/* Services Section */
.footer_services {
    padding-top: 10px;
}

.services_columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service_column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
    display: inline-block;
}

.service_column nav {
    display: flex;
    flex-direction: column;
}

.service_column nav a {
    color: #fff;
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.service_column nav a:first-child {
    margin-top: 0;
}

.service_column nav a:hover {
    color: #ff6b35;
    padding-left: 10px;
}

.service_column nav a:hover::before {
    content: '→';
    position: absolute;
    left: -5px;
    color: #ff6b35;
}

/* Terms Section */
.footer_terms {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid hsla(0,0%,100%,.26);
}

.footer_terms nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer_terms a {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_terms a:hover {
    color: #ff6b35;
}

.footer_terms a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: #fff;
    font-weight: 400;
}

/* Payment Methods */
.footer_payments {
    align-items: center;
    border: 1px solid hsla(0,0%,100%,.34);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 25px 20px 20px;
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.footer_payments span {
    background: linear-gradient(180deg, #001435 43.89%, #003087 102%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_payments span::before {
    content: '💳';
    font-size: 16px;
}

.payment_methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.payment_method {
    border-radius: 6px;
    height: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment_method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.payment_method img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Navigation and Contacts */
.navigation_contacts_wrapper {
    margin-top: 25px;
}

.footer_navigation nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer_navigation a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer_navigation a:hover {
    color: #ff6b35;
}

.footer_navigation a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -18px;
    color: #fff;
    font-weight: 400;
}

/* Footer Contacts */
.footer_contacts {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer_contacts a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.footer_contacts a:hover {
    color: #ff6b35;
}

.footer_phone::before {
    content: '📞';
    font-size: 16px;
}

.footer_email::before {
    content: '✉️';
    font-size: 16px;
}

.footer_whatsapp {
    background-color: #25D366;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 5px;
    width: 200px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer_whatsapp:hover {
    background-color: #128C7E;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp_icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer Bottom */
.footer_bottom_block {
    background: linear-gradient(180deg, #001435 43.89%, #003087 102%);
    text-align: center;
    padding: 20px 0;
}

.footer_bottom_block span {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer_width {
        padding: 0 15px;
    }
    
    .footer_top_block .footer_width {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_left_block {
        border-right: none;
        border-bottom: 1px solid hsla(0,0%,100%,.26);
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .footer_right_block {
        width: 100%;
        padding: 0;
    }
    
    .services_columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services_columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer_terms nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer_terms a:not(:last-child)::after {
        display: none;
    }
    
    .footer_navigation nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer_navigation a:not(:last-child)::after {
        display: none;
    }
    
    .payment_methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .footer_payments {
        padding: 20px 15px 15px;
    }
    
    .footer_whatsapp {
        width: 200px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer_top_block {
        padding: 30px 0 25px;
    }
    
    .footer_width {
        padding: 0 10px;
    }
    
    .service_column h4 {
        font-size: 12px;
    }
    
    .service_column nav a {
        font-size: 14px;
    }
    
    .footer_terms a,
    .footer_navigation a,
    .footer_contacts a {
        font-size: 12px;
    }
    
    .payment_methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .payment_method {
        height: 20px;
    }
    
    .footer_bottom_block span {
        font-size: 11px;
        padding: 0 10px;
    }
    
    .footer_whatsapp {
        width: 160px;
        padding: 8px 15px !important;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_column,
.footer_payments,
.navigation_contacts_wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

.service_column:nth-child(1) { animation-delay: 0.1s; }
.service_column:nth-child(2) { animation-delay: 0.2s; }
.service_column:nth-child(3) { animation-delay: 0.3s; }
.footer_payments { animation-delay: 0.4s; }
.navigation_contacts_wrapper { animation-delay: 0.5s; }

.order_cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0px;
    text-align: center;
    color: white;
   
    height: auto;
}

.order_cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.order_cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.order_cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.order_cta-button {
    display: inline-block;
    background: linear-gradient(180deg,#ff6d1b,#ff6d1b);
    border: 1px solid #df5609;
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.order_cta-button:hover {
    background: linear-gradient(180deg,#ff5f1b,#fd450b);
    border: 1px solid #d23c0d;
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
    color: white;
    text-decoration: none;
}

.order_cta-button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .order_cta-title {
        font-size: 2rem;
    }
    
    .order_cta-description {
        font-size: 1.1rem;
    }
    
    .order_cta-section {
        padding: 40px 15px;
    }
}

/* Additional styling for the website context */
.order_highlight {
    color: #ffd700;
    font-weight: bold;
}


.data-analytics-section {
    background-color: #f3f3f6;
    color: #001c64;
    padding: 50px 20px;
    margin: 0;
  }

  .data-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .data-section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .data-section-title {
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001c64;
  }

  .data-section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 1;
    font-weight: 500;
  }

  .data-services-overview {
    display: flex;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 10px;
  }

  .data-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* force two rows */
    gap: 20px;
  }

  .data-service-item {
    display: flex;
    align-items: flex-start;
    background: rgba(202, 190, 190, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 191, 191, 0.2);
    transition: transform 0.3s ease;
  }

  .data-service-item:hover {
    transform: translateY(-5px);
    background: rgba(205, 184, 184, 0.15);
  }

  .data-service-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .data-service-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #001c64;
  }

  .data-service-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
  }

  .tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .tool-tag {
    background: rgba(145, 128, 128, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.427);
  }

  .data-cta-row {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }
  .data-order-btn {
    background: linear-gradient(180deg, #ff6d1b, #ff6d1b);
    color: white;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    
  }

  .data-order-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #edc7b1, #ff6d1b);
    text-decoration: none;
    color: white;
  }

  @media (max-width: 768px) {
    .data-analytics-section {
      padding: 40px 15px;
    }

    .data-section-title {
      font-size: 1.8rem;
    }

    .data-services-overview {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .data-services-list {
      grid-template-columns: 1fr;
    }

    .data-service-item {
      padding: 15px;
    }

    .data-cta-row {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }

  .service-section-title{
    text-align: center;
    margin-bottom: 60px;
  }

  .testimonial-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .testimonial-title h2 {
    font-size: 2.8rem;
    color: #001c64;
    margin: 0;
    font-weight: 300;
    position: relative;
  }

  .testimonial-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
  }

  .testimonial-title span{
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }







 