/* Container & Wrapper */
.act-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    padding: 0 20px;
    color: #333;
}

/* Header Section matching screenshot styling */
.act-main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.act-header-left h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #2c2c2c;
    margin: 0;
}

.act-header-left .highlight-green {
    color: #7bb833; /* Exact green hue */
}

.act-header-right {
    max-width: 55%;
}

.act-header-right .top-para-bold {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.act-header-right .top-para-light {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Tabs Navigation Alignment */
.act-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.act-tab-link {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
    transition: color 0.2s ease;
}

.act-tab-link .tab-arrow {
    color: #7bb833;
    font-weight: bold;
    font-size: 14px;
}

.act-tab-link:hover, 
.act-tab-link.active {
    color: #7bb833;
}

/* Divider line */
.act-divider {
    border: 0;
    height: 1px;
    background: #e2e2e2;
    margin: 0 0 40px 0;
}

/* Grid Layout for Content */
.act-tab-content {
    display: none;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.act-tab-content.active {
    display: grid;
    animation: actFadeIn 0.30s ease-in-out;
}

/* Inside Content Text Styles */
.act-tab-heading {
    font-size: 32px;
    color: #7bb833;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.act-tab-intro {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
}

.act-subheading {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 20px 0 8px 0;
}

.act-desc-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px 0;
}

/* The exact CTA Button style */
.act-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #7bb833 0%, #20a3be 100%); /* Smooth color transition like standard themes */
    background-color: #28a7b9; /* Fallback cyan */
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 15px;
    transition: opacity 0.2s ease;
}

.act-btn:hover {
    opacity: 0.9;
}

.act-btn .btn-arrow {
    font-size: 12px;
}

/* Image section matching rounded layout */
.act-tab-right img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded corners as per image */
    display: block;
    object-fit: cover;
}

/* Micro Animation */
@keyframes actFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Behaviour */
@media (max-width: 992px) {
    .act-main-header {
        flex-direction: column;
        gap: 15px;
    }
    .act-header-right {
        max-width: 100%;
    }
    .act-tab-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .act-tab-right {
        order: -1;
    }
    .act-tabs-nav {
        gap: 20px;
    }
}