.hero-section {
    position: relative;
    min-height: 70vh;
    background: #e9ecef;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    overflow: hidden;
    padding: 20px;
}

.hero-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-grid-boxes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-grid-box {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hero-grid-box:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 80px;
}

.hero-grid-box:nth-child(2) {
    top: 30%;
    right: 8%;
    width: 100px;
    height: 100px;
}

.hero-grid-box:nth-child(3) {
    bottom: 20%;
    left: 8%;
    width: 140px;
    height: 60px;
}

.hero-grid-box:nth-child(4) {
    bottom: 35%;
    right: 15%;
    width: 80px;
    height: 80px;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding: 100px 20px;
    text-align: center;
}

.hero-content-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 20px;
    z-index: -1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
    margin: 0 15px;
}

.hero-stat-icon {
    margin-right: 8px;
    color: #009653;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-title-highlight {
    color: #009653;
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-floating-icon {
    position: absolute;
    font-size: 24px;
    color: #000;
    opacity: 0.6;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-floating-icon:nth-child(1) {
    top: 20%;
    left: 35%;
    animation-delay: 0s;
}

.hero-floating-icon:nth-child(2) {
    top: 15%;
    right: 30%;
    animation-delay: 2s;
}

.hero-floating-icon:nth-child(3) {
    bottom: 45%;
    left: 30%;
    animation-delay: 4s;
}

.hero-floating-icon:nth-child(4) {
    bottom: 40%;
    right: 35%;
    animation-delay: 1s;
}

.hero-floating-icon:nth-child(5) {
    top: 35%;
    left: 25%;
    animation-delay: 3s;
}

.hero-floating-icon:nth-child(6) {
    top: 45%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stat-item {
        margin: 0;
    }

    .hero-floating-icon {
        font-size: 20px;
    }

    .hero-grid-box {
        width: 80px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-floating-icon {
        font-size: 18px;
    }
}

.hero-floating-icon:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero-grid-line {
    position: absolute;
    background: rgba(0, 150, 83, 0.1);
}

.hero-grid-line.horizontal {
    height: 1px;
    left: 0;
    right: 0;
}

.hero-grid-line.vertical {
    width: 1px;
    top: 0;
    bottom: 0;
}

.hero-grid-line:nth-child(1) {
    top: 25%;
}

.hero-grid-line:nth-child(2) {
    top: 50%;
}

.hero-grid-line:nth-child(3) {
    top: 75%;
}

.hero-grid-line:nth-child(4) {
    left: 25%;
}

.hero-grid-line:nth-child(5) {
    left: 50%;
}

.hero-grid-line:nth-child(6) {
    left: 75%;
}

.who-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-image-wrapper {
    position: relative;
    animation: whoSlideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.who-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.who-content {
    animation: whoSlideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        0.2s both;
}

.who-badge {
    display: inline-block;
    color: #009653;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 16px;
}

.who-badge::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009653;
}

.who-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.who-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}


/* Responsive Design */
@media (max-width: 768px) {
    .who-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    .who-image-wrapper {
        order: -1;
        animation: whoFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }

    .who-content {
        animation: whoFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s
            both;
        text-align: center;
    }

    .who-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .who-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .who-image {
        height: 500px;
    }

    .who-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .who-title {
        font-size: 24px;
    }

    .who-description {
        font-size: 14px;
    }

    .who-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .who-image {
        height: 250px;
    }
}

@keyframes whoSlideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes whoSlideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes whoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.who-badge {
    animation: whoFadeInUp 0.6s ease-out 0.4s both;
}

.who-title {
    animation: whoFadeInUp 0.6s ease-out 0.6s both;
}

.who-description {
    animation: whoFadeInUp 0.6s ease-out 0.8s both;
}

.btn {
    animation: whoFadeInUp 0.6s ease-out 1s both;
}

.wht-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.wht-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wht-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
}

.wht-left.wht-animate {
    opacity: 1;
    transform: translateX(0);
}

.wht-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
}

.wht-right.wht-animate {
    opacity: 1;
    transform: translateX(0);
}

.wht-tagline {
    display: inline-block;
    font-size: 12px;
    color: #009653;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 16px;
}

.wht-tagline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009653;
}

.wht-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 30px;
}

.wht-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.wht-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wht-service {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
}

.wht-service:nth-child(1) {
    transition-delay: 0.2s;
}

.wht-service:nth-child(2) {
    transition-delay: 0.4s;
}

.wht-service:nth-child(3) {
    transition-delay: 0.6s;
}

.wht-service:nth-child(4) {
    transition-delay: 0.8s;
}

.wht-service.wht-animate {
    opacity: 1;
    transform: translateX(0);
}

.wht-service-icon {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 16px;
    display: block;
}

.wht-service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    position: relative;
    padding-top: 12px;
}

/* .wht-service-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #1f2937;
} */

.wht-service-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wht-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wht-services {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wht-title {
        font-size: 36px;
    }

    .wht-left,
    .wht-right {
        transform: translateY(40px);
    }

    .wht-left.wht-animate,
    .wht-right.wht-animate {
        transform: translateY(0);
    }

    .wht-service {
        transform: translateY(40px);
    }

    .wht-service.wht-animate {
        transform: translateY(0);
    }
}

.test-section {
    background: #e9ecef;
    width: 100%;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.test-section.test-animate {
    opacity: 1;
    transform: translateY(0);
}

.test-main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.test-header {
    margin-bottom: 50px;
    text-align: center;
}

.test-title {
    display: inline-block;
    text-align: center;
    padding-bottom: 16px;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #009653;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.test-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009653;
}

.test-icon {
    color: #009653;
    font-size: 1.6rem;
}

.test-container {
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.test-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.test-slide {
    width: 33.333%;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

.test-card {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.test-section.test-animate .test-card {
    opacity: 1;
    transform: translateY(0);
}

.test-card:nth-child(1) {
    transition-delay: 0.2s;
}

.test-card:nth-child(2) {
    transition-delay: 0.4s;
}

.test-quote-icon {
    font-size: 2.5rem;
    color: #009653;
    margin-bottom: 20px;
    opacity: 0.8;
}

.test-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.test-card-content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.test-divider {
    height: 2px;
    background: linear-gradient(90deg, #009653, rgba(0, 150, 83, 0.3));
    margin: 25px 0;
    border-radius: 1px;
}

.test-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009653, #00b366);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.test-profile-info {
    flex: 1;
}

.test-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.test-position {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.test-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.test-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #009653;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #009653;
}

.test-nav-btn:hover {
    background: #009653;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 83, 0.3);
}

.test-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.test-nav-btn:disabled:hover {
    color: #009653;
    transform: none;
    box-shadow: none;
}

.test-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.test-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-indicator.test-active {
    background: #009653;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .test-slide {
        flex-direction: column;
        gap: 30px;
    }

    .test-container {
        padding: 30px 20px;
    }

    .test-card-title {
        font-size: 1.2rem;
    }

    .test-card-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .test-section {
        padding: 40px 15px;
    }

    .test-container {
        padding: 25px 15px;
    }
    

    .test-quote-icon {
        font-size: 2rem;
    }
}

.faq-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.faq-section.faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-header {
    flex: 1;
    min-width: 0;
}

.faq-content-wrapper {
    margin-bottom: 30px;
}

.faq-badge {
    position: relative;
    color: #009653;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 16px;
}

.faq-badge::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009653;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.faq-image-card {
    background: url(../images/wonder.jpg) center/cover;
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}

.faq-image-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    border-radius: 20px;
}

.faq-image-card .btn {
    width: fit-content;
}

.faq-image-card > * {
    position: relative;
    z-index: 2;
}

.faq-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-card-subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.faq-questions {
    flex: 1;
    min-width: 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.faq-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #009653;
}

.faq-icon {
    font-size: 16px;
    color: #009653;
    transition: all 0.3s ease;
    min-width: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #f8f9fa;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.faq-active .faq-answer {
    max-height: 200px;
}

@media (max-width: 968px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-header {
        width: 100%;
    }

    .faq-questions {
        width: 100%;
    }

    .faq-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-container {
        gap: 30px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 16px;
        font-size: 13px;
    }

    .faq-answer-content {
        padding: 0 16px 16px;
        font-size: 12px;
    }

    .faq-image-card {
        min-height: 200px;
        padding: 24px;
    }
}

.cta-section {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 20%,
            rgba(0, 150, 83, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(0, 150, 83, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.8s ease;
}

.cta-icon.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.2s;
    line-height: 1.2;
}

.cta-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    line-height: 1.5;
}

.cta-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating particles animation */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #009653;
    border-radius: 50%;
    opacity: 0.3;
    animation: ctaFloat 6s infinite linear;
}

@keyframes ctaFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
    }

    .cta-icon i {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 10px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }

    .cta-icon i {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
    }
}

.cta-section:hover .cta-particle {
    animation-duration: 4s;
}

