/* How It Works Page Specific Styles */

/* How It Works Page - Hero section with reduced top padding */
.hero-section-elevated.how-it-works-hero {
    padding: 1rem 0 0.2rem;
}

/* How It Works Page - Hero container with background image */
.how-it-works-hero .hero-container {
    background-color: var(--btn-radius-two);
    /* Grouping background properties for clarity */
    background: url('../src/images/pexels-ron-lach-9037592.jpg') center/cover no-repeat; 
    border-radius: 10px 10px 0 0;
    padding: 3rem;
    margin: 0 1.5rem;
    max-width: calc(100% - 3rem);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* Redundant .how-it-works-hero selector context removed for clarity */
.how-it-works-hero .hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Redundant .how-it-works-hero selector context removed for clarity */
.how-it-works-hero .hero-container .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.how-it-works-hero .hero-content {
    text-align: center;
    max-width: 100%;
}

/* Applying color white to the main text elements */
.how-it-works-hero .hero-content h1,
.how-it-works-hero .hero-content p {
    color: white;
}

.how-it-works-hero .hero-content h1 .purpose-red {
    color: #CB7C57;
}

.hiw-hero-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* What Is Skill-Based Volunteering Section */
.skill-based-section {
    padding: 0.2rem 0 2rem;
    text-align: center;
}

.skill-based-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black-color);
    margin-top: 2rem;
}

.skill-based-section h2 span {
    color: var(--primary-color);
}

.skill-based-section .section-subtitle {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skill-based-container {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    margin: 0 auto 3rem;
    max-width: 1000px;
    text-align: left;
}

.skill-based-container h3 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black-color);
}

.skill-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.skill-list li {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    text-transform: capitalize;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.skill-based-container p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    text-transform: capitalize;
}

.skill-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.skill-tag {
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    text-transform: capitalize;
    font-weight: 500;
    cursor: default;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.skill-tag:hover {
    transform: translateY(-2px);
}

.skill-tag.primary {
    background-color: transparent;
    color: var(--feature-color);
    border: 2px solid var(--feature-color);
}

.skill-tag.secondary {
    background-color: transparent;
    color: var(--btn-radius-one);
    border: 2px solid var(--btn-radius-one);
}

.skill-tag.three {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.skill-tag.highlighted {
    background-color: var(--btn-radius-two);
    color: white;
    border: 2px solid var(--btn-radius-one);
}

@media (max-width: 768px) {
    .skill-tags {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        overflow-x: visible;
    }
    
    .skill-tag {
        width: 80%;
        max-width: 300px;
        text-align: center;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* The Journey Section Styles */
.journey-section {
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(203, 124, 87, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(163, 177, 138, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(203, 124, 87, 0.03) 0%, transparent 70%);
    animation: gentleFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 0.8; }
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black-color);
}

.journey-section h2 span {
    color: var(--primary-color);
}

.journey-circles {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}



.journey-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.journey-circle:hover {
    transform: scale(1.05);
}

.journey-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-item h3 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.journey-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    animation: buttonFlash 2s infinite;
    box-shadow: 0 0 0 0 rgba(203, 124, 87, 0.7);
}

@keyframes buttonFlash {
    0% {
        box-shadow: 0 0 0 0 rgba(203, 124, 87, 0.7);
        background-color: var(--primary-color);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(203, 124, 87, 0);
        background-color: #b56e4c;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(203, 124, 87, 0);
        background-color: var(--primary-color);
    }
}

.journey-toggle:hover {
    background-color: #b56e4c;
    transform: scale(1.1);
    animation: none;
}

.journey-toggle.active {
    animation: none;
    background-color: #b56e4c;
    transform: scale(1.1);
}

.plus-icon {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.journey-toggle.active .plus-icon {
    transform: rotate(45deg);
}

.journey-description {
    max-width: 250px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(-20px) scale(0.8);
}

.journey-description.active {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0) scale(1);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: translateY(-20px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(5px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.journey-description p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    position: relative;
}

.journey-description p::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: url('../src/logos/colorise_wb.PNG');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}tom right 10px;
    background-blend-mode: overlay;
}ear-gradient(135deg, white, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    position: relative;
}

.journey-description p::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

@media (max-width: 768px) {
    .journey-circles {
        flex-direction: column;
        gap: 3rem;
    }
    
    .journey-circle {
        width: 150px;
        height: 150px;
    }
    
    .journey-description {
        max-width: 300px;
    }
}

/* Button Styles */
.conscious-container .btn-container {
    text-align: center;
    margin-top: 2rem;
}

/* Dual Container Section Styles */
.dual-container-section {
    padding: 2.5rem 0;
}

.initiatives-container,
.travelers-container {
    border-radius: 15px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiatives-container:hover,
.travelers-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.initiatives-container {
    background-color: white;
    border: 2px solid #F17D5A;
}

.travelers-container {
    background-color: white;
    border: 2px solid #A3B18A;
}

.initiatives-container h2,
.travelers-container h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black-color);
}

.initiatives-container h2 span {
    color: #F17D5A;
}

.conscious-span {
    color: var(--black-color);
}

.travelers-span {
    color: var(--btn-radius-two);
}

.initiatives-container p,
.travelers-container p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.initiatives-container h4,
.travelers-container h4 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.initiatives-container ol,
.travelers-container ol {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.initiatives-container ol li,
.travelers-container ol li {
    margin-bottom: 0.8rem;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-initiatives {
    background-color: #F17D5A;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #F17D5A;
    width: 100%;
    text-align: center;
    display: block;
}

.btn-initiatives:hover {
    background-color: transparent;
    color: #F17D5A;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-travelers {
    background-color: #A3B18A;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #A3B18A;
    width: 100%;
    text-align: center;
    display: block;
}

.btn-travelers:hover {
    background-color: transparent;
    color: #A3B18A;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .button-container {
        margin-top: 1.5rem;
    }
    
    .btn-initiatives,
    .btn-travelers {
        width: 100%;
        text-align: center;
    }
}

/* Our Role Section Styles */
.our-role-section {
    padding: 2.5rem 0;
}

.our-role-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black-color);
    text-align: center;
}

.our-role-section h2 span {
    color: var(--primary-color);
}

.role-subtitle {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.role-container {
    background-color: var(--btn-radius-two) !important;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.role-items {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.role-item {
    flex: 1;
    text-align: center;
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.role-icon:hover {
    transform: scale(1.1);
}

.role-item h4 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.role-item p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1rem;
    color: var(--dark-color);
    margin: 0;
}

.role-tags {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.role-tags-text {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Three Containers Section Styles */
.three-containers-section {
    padding: 2.5rem 0;
    background-color: var(--background-color);
}

.white-container {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.white-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url('../src/logos/main_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.col-lg-4:nth-child(1) .white-container::before {
    bottom: -30px;
    left: -30px;
}

.col-lg-4:nth-child(2) .white-container::before {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.col-lg-4:nth-child(3) .white-container::before {
    bottom: -30px;
    right: -30px;
}

.white-container > * {
    position: relative;
    z-index: 2;
}

.white-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.container-label {
    background-color: var(--btn-radius-two);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.white-container h3 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.white-container p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
}

@media (max-width: 768px) {
    .role-items {
        flex-direction: column;
        gap: 2rem;
    }
    
    .role-container {
        padding: 2rem;
    }
    
    .role-tags-text {
        font-size: 1rem;
    }
    
    .three-containers-section {
        padding: 3rem 0;
    }
    
    .white-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .white-container {
        padding: 1.5rem;
    }
}

/* Ready to Begin Section */
.ready-to-begin-section {
    padding: 2.5rem 0;
    background-color: var(--background-color);
}

.ready-container {
    background-color: rgba(200, 212, 183, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ready-container h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    color: var(--black-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-quiz {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-quiz:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.volunteer-count {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
}

#counter {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .ready-container {
        padding: 2rem;
    }
    
    .ready-container h2 {
        font-size: 2rem;
    }
}

/* For Organisations Section */
.organisations-section {
    margin: 50px 0;
    padding: 30px 0;
}

.organisations-container {
    background-color: #CB7C57;
    border-radius: 18px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    color: white;
}

.organisations-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.organisations-container h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.organisations-container p {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000
}

.tag-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center !important;
}

.org-tag {
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Minion Pro', serif;
    font-weight: 600;
    color: #000000;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-tag:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.role-container {
    background-color: #D6CBE8;
    border-radius: 18px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.role-container h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.role-container p {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.role-box {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.role-box.negative {
    background-color: #CB7C57;
    color: white;
}

.role-box.positive {
    background-color: #A3B18A;
    color: white;
}

.role-box h3 {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.role-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: #000000;
}

.role-box ul li {
    font-family: 'Minion Pro', serif;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
    color: #000000;
}

.role-box ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hiw-hero-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hiw-hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hiw-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hiw-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hiw-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hiw-hero-container {
        padding: 25px;
    }
}