/* Page Hero Section */
.page-hero-section {
    padding: 120px 0 80px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.section:first-of-type  {
    padding: 0 0;
}

.page-hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.page-hero-content {
    padding: 65px 50px;
    max-width: 650px;
    align-self: end;
}

.page-hero-text {
    max-width: 800px;
}

.page-breadcrumb {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
    font-weight: 300;
}

.page-hero-heading {
    margin-bottom: 20px;
}

.page-hero-heading .styled-text-line {
    display: block;
    line-height: 1.2;
    font-weight: 300;
}

.page-hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.page-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.page-hero-buttons .btn-primary {
    background-color: #8BC34A;
    color: white;
    border: 2px solid #8BC34A;
}

.page-hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: #8BC34A;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 195, 74, 0.3);
}

.page-hero-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.page-hero-buttons .btn-secondary:hover {
    background-color: white;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* Sectors Page Styles */
.sectors-accordion-section {
    padding: 80px 0;
    position: relative;
}

.sectors-accordion-content {
    margin: 0 auto;
    padding: 0 20px;
}

.sectors-heading {
    text-align: center;
    margin-bottom: 20px;
}

.sectors-heading .styled-text-line {
    display: block;
    line-height: 1.2;
}

.sectors-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Styles - 50/50 Split Layout */
.accordion-split-container {
    display: flex;
    gap: 80px;
    margin: 60px auto 0;
    align-items: flex-start;
}

.accordion-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accordion-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Left Column Image and Content */
.accordion-image-content-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accordion-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Content Overlay */
.accordion-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 60px 40px 40px;
    border-radius: 0 0 20px 20px;
}

.accordion-content-container {
    position: relative;
}

.accordion-dynamic-content {
    transition: opacity 0.5s ease;
}

.accordion-dynamic-title {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.accordion-dynamic-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* Right Column Radio Buttons */
.accordion-radio-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 10px;
}

.accordion-radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: grey;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-radio-item:hover {
    transform: translateX(8px);
}

.accordion-radio-item input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid grey;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.custom-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: black;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

input[type="radio"]:checked + .custom-radio {
    border-color: black;
}

input[type="radio"]:checked + .custom-radio::after {
    opacity: 1;
}

input[type="radio"]:checked ~ .label-text {
    color: black;
}

.label-text {
    font-size: 16px;
    font-weight: 600;
    color: #808081;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-radio-item:hover .label-text {
    color: #000;
}

/* Right Column Lists */
.accordion-lists-container {
    position: relative;
}

.accordion-list-content {
    transition: opacity 0.5s ease;
}

.accordion-subheading {
    font-size: 14px;
    color: #000;
    border-bottom: 2px solid #eee;
    margin-bottom: 10px;
}

.sector-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sector-list li {
    padding: 5px 0;
    font-size: 14px;
    color: #808081;
    border-bottom: 1px solid #808081;
    position: relative;
    line-height: 1.4;
    font-weight: 300;
    transition: all 0.3s ease;
}

.sector-list li:last-child {
    border-bottom: none;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background-color: #333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    border-radius: 30px;
    min-height: 50vh;
}

.contact-cta-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    align-self: end;
    margin-bottom: 75px;
}

.contact-cta-heading {
    margin-bottom: 20px;
}

.contact-cta-heading .styled-text-line {
    display: block;
    line-height: 1.2;
}

.contact-cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta-button {
    margin-top: 30px;
    width: fit-content;
    justify-self: center;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    background-color: #8BC34A;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #8BC34A;
}

.cta-button:hover {
    background-color: transparent;
    color: #8BC34A;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 195, 74, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 80px 0 60px;
        min-height: 60vh;
    }
    
    .page-hero-content {
        padding: 0 16px;
    }
    
    .page-hero-heading .styled-text-line {
        font-size: 32px !important;
    }
    
    .page-hero-description {
        font-size: 16px;
    }
    
    .page-hero-buttons {
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .page-hero-buttons .btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
    
    .sectors-accordion-section {
        padding: 60px 0;
    }
    
    .sectors-accordion-content {
        padding: 0 16px;
    }
    
    .accordion-split-container {
        flex-direction: column;
        gap: 60px;
        margin-top: 40px;
    }
    
    .accordion-image-content-wrapper {
        height: 300px;
    }
    
    .accordion-dynamic-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .accordion-dynamic-description {
        font-size: 16px;
    }
    
    .accordion-content-overlay {
        position: relative;
        padding: 40px 20px 30px;
    }
    
    .accordion-radio-item {
        gap: 16px;
        padding: 12px 0;
    }
    
    .label-text {
        font-size: 14px;
    }
    
    .sector-list li {
        font-size: 16px;
        padding: 14px 0;
    }
    
    .accordion-subheading {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .contact-cta-section {
        padding: 175px 0;
    }
    
    .contact-cta-content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 60px 0 40px;
    }
    
    .page-hero-content,
    .sectors-accordion-content,
    .contact-cta-content {
        padding: 0 12px;
    }
    
    .page-hero-heading .styled-text-line {
        font-size: 28px !important;
    }
    
    .sectors-accordion-section {
        padding: 60px 0;
    }
    
    .accordion-split-container {
        gap: 40px;
        margin-top: 30px;
    }
    
    .accordion-image-content-wrapper {
        height: 500px;
        align-content: end;
    }
    
    .accordion-dynamic-title {
        font-size: 28px;
    }
    
    .accordion-content-overlay {
        padding: 30px 16px 20px;
    }
    
    .accordion-radio-container {
        gap: 20px;
        flex-direction: column;
    }
    
    .label-text {
        font-size: 14px;
    }
}
