.section-container#how-works,
#how-works .section-container {
    padding: 48px 16px;
    background: #ffffff;
}

#how-works .header {
    align-items: center;
    text-align: center;
}

#how-works .title-row {
    justify-content: center;
    gap: 8px;
}

#how-works .how-text,
#how-works .works-text {
    font-size: 24px;
}

#how-works .header-description {
    font-size: 14px;
    line-height: 20px;
}

/* Mobile-first cards grid */
#how-works .cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

#how-works .card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

#how-works .card-content {
    padding: 20px;
}

#how-works .card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}

#how-works .step-button {
    width: 100%;
    max-width: 280px;
    height: 52px;
    margin: 12px auto 0;
}

#how-works .step-number {
    width: 38px;
    height: 38px;
}

#how-works .step-text {
    font-size: 15px;
}

/* Tablet */
@media (min-width: 576px) {

    #how-works .how-text,
    #how-works .works-text {
        font-size: 26px;
    }
}

@media (min-width: 768px) {
    #how-works .section-container {
        padding: 56px 24px;
    }

    #how-works .cards-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    #how-works .how-text,
    #how-works .works-text {
        font-size: 28px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    #how-works .section-container {
        padding: 64px 48px;
    }

    #how-works .cards-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    #how-works .how-text,
    #how-works .works-text {
        font-size: 32px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #00221E;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    /* background-color: #00221E; */
    padding: 24px 104px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 4.62px;
}

.logo img {
    height: 31px;
    width: auto;
}

.menus {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-menus {
    display: flex;
    gap: 24px;
}

.menu-item {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.menu-item:hover {
    opacity: 0.8;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 24px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* width: 123px; */
    height: 48px;
    border: 1px solid #0B9E8C;
    border-radius: 24px;
    padding: 14px 24px;
    cursor: pointer;
    color: #0B9E8C;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: rgba(11, 158, 140, 0.1);
}

.signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 135px;
    height: 48px;
    border-radius: 24px;
    padding: 14px 24px;
    cursor: pointer;
    background-color: #0B9E8C;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: #0a8c7a;
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 250px 0px 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: relative;
    overflow: visible;
    /* background-color: #00221E; */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    /* max-width: 768px; */
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
    margin-bottom: 18px;
}

.hero-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.create-resume-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 167px;
    height: 47px;
    border-radius: 24px;
    padding: 14px 24px;
    cursor: pointer;
    background-color: #0B9E8C;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.create-resume-btn:hover {
    background-color: #0a8c7a;
}

.browse-templates-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 191px;
    height: 47px;
    border-radius: 24px;
    border: 1px solid #0B9E8C;
    padding: 14px 24px;
    cursor: pointer;
    color: #0B9E8C;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.browse-templates-btn:hover {
    background-color: rgba(11, 158, 140, 0.1);
}

/* Resume Preview Container inside Hero */
.resume-preview-container {
    width: 60%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    overflow: visible;
}

.resume-preview {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(11, 158, 140, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.resume-preview .resume-body {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 14.13px 37.67px 0px rgba(0, 34, 30, 0.04);
    color: #000;
    overflow: hidden;
}

.resume-left {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.resume-content {
    flex: 2;
    padding-left: 30px;
}

.resume-personal {
    margin-bottom: 20px;
}

.resume-name {
    font-size: 24px;
    font-weight: 700;
    color: #0B9E8C;
    margin-bottom: 8px;
}

.resume-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0B9E8C;
    margin-bottom: 12px;
}

.resume-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.resume-details {
    margin-top: 15px;
}

.resume-details div {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resume-details i {
    color: #0B9E8C;
    width: 12px;
}

.job-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.job-duration {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.job-responsibilities {
    margin: 0;
    padding-left: 16px;
}

.job-responsibilities li {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    line-height: 1.4;
}

.job-winning-badge {
    position: absolute;
    top: -40px;
    left: -135px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    width: fit-content;
    z-index: 100;
    min-width: 140px;
    opacity: 1;
    visibility: visible;
}

.smart-ai-badge {
    position: absolute;
    bottom: 20px;
    right: -100px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    width: fit-content;
    z-index: 100;
    min-width: 140px;
    opacity: 1;
    visibility: visible;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 158, 140, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B9E8C;
}

.badge-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #585858;
}

.resume-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* border-bottom: 1px solid #e0e0e0; */
}

.resume-personal {
    flex: 1;
}

.resume-photo {
    width: 141.7916717529297px;
    height: 141.7916717529297px;
    border-width: 8px;
    background: #0B9E8C;
    border: 8px solid #0B9E8C1F;
    box-shadow: 0px 12px 32px 0px #00221E0A;
    border-radius: 50%;
}

/* .resume-photo img {
    box-shadow: 0px 12px 32px 0px #00221E0A;
    border: 8px solid #0B9E8C1F;
} */

.resume-name {
    font-size: 28px;
    font-weight: 700;
    color: #0B9E8C;
    margin-bottom: 5px;
}

.resume-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.resume-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.resume-contact {
    flex: 0 0 200px;
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.resume-content {
    display: flex;
    gap: 30px;
}

.resume-left {
    flex: 1;
}

.resume-right {
    flex: 2;
}

.resume-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0B9E8C;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(11, 158, 140, 0.1);
    color: #0B9E8C;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.employment-item {
    margin-bottom: 15px;
}

.job-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.job-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.job-responsibilities {
    list-style-type: none;
}

.job-responsibilities li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.job-responsibilities li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0B9E8C;
}

.resume-body {
    display: flex;
    gap: 30px;
}



/* Responsive adjustments */
@media (max-width: 1200px) {

    .navbar,
    .hero-section {
        padding-left: 200px;
        padding-right: 200px;
    }

    .resume-preview-container {
        width: 70%;
        height: 45vh;
    }

    .job-winning-badge {
        left: -140px;
    }

    .smart-ai-badge {
        right: -140px;
    }
}

@media (max-width: 992px) {

    .navbar {
        padding: 25px 20px;
    }

    .hero-section {
        padding-left: 150px;
        padding-right: 150px;
    }

    .resume-preview-container {
        width: 85%;
        height: 40vh;
    }

    .job-winning-badge {
        left: -130px;
    }

    .smart-ai-badge {
        right: -130px;
    }

    .resume-preview .resume-body {
        flex-direction: column;
        padding: 20px;
    }

    .resume-left {
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .resume-content {
        padding-left: 0;
        padding-top: 15px;
    }

    .navbar-container {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .menus {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #00221E;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
        z-index: 1000;
    }

    .menus.active {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .auth-buttons {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .resume-content {
        flex-direction: column;
    }

    .resume-header {
        flex-direction: column;
    }

    .resume-contact {
        text-align: left;
        margin-top: 15px;
    }

    .contact-item {
        justify-content: flex-start;
    }

    /* How section and generic section header tweaks */
    .section-container {
        padding: 48px 32px;
    }

    .header {
        gap: 8px;
    }

    .title-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .how-text,
    .works-text {
        font-size: 24px;
        line-height: 1.1;
    }

    .header-description {
        text-align: center;
        font-size: 14px;
        line-height: 20px;
    }

    /* Job Winning Resume Formats header */
    .template-header {
        text-align: center;
        align-items: center;
    }

    .template-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .template-header-description {
        font-size: 14px;
        line-height: 20px;
    }

    /* Generic h3 section titles inside resume preview etc. */
    .section-title {
        font-size: 16px;
    }

    /* How section cards responsive (tablet) */
    .cards-row {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        justify-items: center;
    }


    .card {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

    .card-image {
        /* visibility: hidden; */
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
    }

    .step-button {
        width: 220px;
        height: 56px;
    }

    .step-number {
        width: 40px;
        height: 40px;
    }

    .step-number-text {
        font-size: 16px;
    }

    .step-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 22px 16px;
    }

    .hero-section {
        padding: 40px 100px;
        overflow: visible;
    }

    .resume-preview-container {
        width: 95%;
        height: 35vh;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        overflow: visible;
    }

    .job-winning-badge,
    .smart-ai-badge {
        transform: scale(0.7);
    }

    .job-winning-badge {
        left: -110px;
        top: 15px;
    }

    .smart-ai-badge {
        right: -110px;
        bottom: 15px;
    }

    .navbar-container {
        height: auto;
    }

    .menus {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .main-menus {
        justify-content: center;
    }

    .auth-buttons {
        border-left: none;
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .create-resume-btn,
    .browse-templates-btn {
        width: 100%;
        max-width: 300px;
    }

    .resume-preview {
        padding: 15px;
    }

    /* Mobile header tweaks */
    .section-container {
        padding: 32px 16px;
    }

    .how-text,
    .works-text {
        font-size: 22px;
    }

    .template-title {
        font-size: 22px;
    }

    .template-header-description {
        font-size: 13px;
    }

    .section-title {
        font-size: 15px;
    }

    /* How section cards responsive (mobile) */
    .cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        max-width: 520px;
        margin: 0 auto;
    }

    .step-button {
        width: 100%;
        max-width: 280px;
        height: 52px;
        margin: 12px auto 0;
    }

    .step-number {
        width: 38px;
        height: 38px;
    }

    .step-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }

    .main-menus {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .login-btn,
    .signup-btn {
        width: 100%;
        max-width: 250px;
    }

    /* Extra-small typography tightening */
    .how-text,
    .works-text {
        font-size: 20px;
    }

    .template-title {
        font-size: 20px;
    }

    .header-description {
        font-size: 13px;
    }

    .section-title {
        font-size: 14px;
    }

    /* Extra small devices: ensure full width */
    .cards-row {
        gap: 14px;
    }

    .step-button {
        max-width: 260px;
        height: 48px;
    }

    .step-number {
        width: 34px;
        height: 34px;
    }

    .step-text {
        font-size: 14px;
    }
}

.section-container {
    width: 100%;
    height: 100%;
    padding: 74px 104px;
    display: flex;
    flex-direction: column;
    gap: 54px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header {
    width: 100%;
    /* height: 65px; */
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    /* width: 461.97px; */
    height: 39px;
}

.how-text {
    width: 70px;
    /* height: 39px; */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #121212;
}

.how-logo {
    width: 100%;
    height: 39px;
    display: flex;
    align-items: center;
    gap: 6.17px;
    justify-content: center;
    /* Placeholder for logo - you'll add your image */
    /* background-color: #f0f0f0; */
    /* border-radius: 4px; */
}

.works-text {
    width: 100%;
    /* height: 39px; */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #121212;
}

.header-description {
    width: 100%;
    /* height: 22px; */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #585858;
    margin-top: 4px;
    justify-content: center;
    display: flex;
}

.cards-row {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    justify-items: center;
}

.card {
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: #F4F6F8;
    gap: 10px;
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 24px;
    border-radius: 24px;
}

/* .card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
    z-index: 1;
} */

.card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.card-background {
    position: absolute;
    inset: 0;
    /* shorthand for top, right, bottom, left = 0 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
    z-index: 1;
    border-radius: inherit;
}

.card-preview {
    width: 100%;
    height: auto;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-image {
    visibility: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    padding: 44px 24px;
    background-color: rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Placeholder for card image - you'll add your image */
    background-color: #f0f0f0;
}

.step-button {
    width: 245px;
    height: 60px;
    padding: 8px 18px;
    border-radius: 14px;
    background-color: #FFFFFF;
    box-shadow: 0px 12px 32px 0px rgba(0, 34, 30, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 115.79px;
    background-color: #0B9E8C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number-text {
    width: 10px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #121212;
    align-items: center;
    justify-content: center;
    display: flex;
}

.step-text {
    width: 153px;
    height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #121212;
    align-items: center;
    display: flex;
}








































.template-section-container {
    width: 100%;
    /* height: 781.33px; */
    height: 100%;
    padding: 74px 0;
    display: flex;
    flex-direction: column;
    gap: 54px;
    background-color: #0B9E8C;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.template-header {
    width: 100%;
    /* height: 69px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 104px;
}

.template-title-section {
    width: 100%;
    /* height: 69px; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.template-title {
    width: 100%;
    /* height: 39px; */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #FFFFFF;
}

.template-header-description {
    width: 259px;
    /* height: 22px; */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.template-header-right {
    width: 475.5px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Stack template header right below on smaller screens */
@media (max-width: 992px) {
    .template-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 24px;
    }

    .template-header-description {
        width: 100%;
    }

    .template-header-right {
        width: 100%;
        height: auto;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .template-header {
        padding: 0 16px;
    }

    .template-header-right {
        flex-wrap: wrap;
        gap: 12px;
    }

    .template-view-all-link {
        width: 100%;
        max-width: 220px;
    }
}

.template-view-all-link {
    width: 147px;
    height: 52px;
    padding: 14px 24px;
    border-radius: 24px;
    border: 1px solid #FFFFFF;
    background-color: #0B9E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-view-all-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.template-view-all-text {
    width: 63px;
    height: 19px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.template-arrow-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.template-arrow-icon::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 14px;
    border: 2px solid #FFFFFF;
    top: 5px;
    left: 12px;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.slider-buttons {
    width: 78px;
    height: 32px;
    display: flex;
    gap: 14px;
}

.slider-btn {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    border: 1px solid #D5D5D5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn.next {
    background-color: #00221E;
    transform: rotate(0deg);
}

.slider-btn.prev {
    transform: rotate(-180deg);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slider-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.slider-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: 1.67px solid #FFFFFF;
    top: 5px;
    left: 7.5px;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.templates-container {
    width: 100%;
    height: 100%;
    padding: 0 48px;
    overflow: hidden;
    position: relative;
}

.templates-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.template-card {
    width: 396px;
    height: 100%;
    border-radius: 24px;
    background-color: #FFFFFF;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1068px) {
    .landing-template-width {
        width: 900px !important;
    }
}

.template-image {
    width: 100%;
    height: 280px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.template-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.template-name {
    font-weight: 600;
    font-size: 18px;
    color: #121212;
}

.template-description {
    font-size: 14px;
    color: #585858;
    line-height: 1.4;
}

.template-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.featured-tag {
    /* background-color: #FFF5E6;
    color: #E68A00; */
    background-color: #FFC107;
    color: #121212;
}

.premium-tag {
    background-color: #0D6EFD;
    color: #FFFFFF;
    /* background-color: #F0F7FF; */
    /* color: #0066CC; */
}

.executive-tag {
    background-color: #0DCAF0;
    color: #FFFFFF;
    /* background-color: #F0FFF4;
    color: #00A86B; */
}

.tag-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.star-download {
    display: flex;
    gap: 16px;
}

.download-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #AEAEAE;
}

.free-badge {
    background-color: #E6F7F4;
    color: #0B9E8C;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.template-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.use-template-btn {
    /* background-color: #0B9E8C; */
    background-color: #0B9E8C1F;
    color: #0B9E8C;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.use-template-btn:hover {
    background-color: #0B9E8C;
    color: white;
}

.action-icons {
    display: flex;
    gap: 12px;
}

.action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-icon:hover {
    background-color: #E5E5E5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .section-container {
        width: 100%;
        height: auto;
    }

    .header {
        flex-direction: column;
        height: auto;
        gap: 20px;
        text-align: center;
    }

    .header-right {
        justify-content: center;
    }

    .templates-container {
        height: auto;
        padding-bottom: 20px;
    }
}






































/* Section container */
.land-section {
    width: 100%;
    height: auto;
    min-height: 511px;
    padding: 74px 104px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 54px;
    opacity: 1;
    background-color: white;
}

/* Section header */
.land-header {
    width: 100%;
    height: auto;
    min-height: 65px;
    padding: 0 104px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 1;
    margin: 0 auto;
}

/* Title */
.land-title {
    width: 100%;
    height: auto;
    min-height: 39px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
}

.land-title-text {
    width: 100%;
    height: auto;
    /* min-height: 39px; */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #121212;
    opacity: 1;
    display: flex;
    justify-content: center;
}

/* Header description */
.land-header-description {
    width: 100%;
    height: auto;
    min-height: 22px;
    opacity: 1;
}

.land-header-description-text {
    width: 100%;
    height: auto;
    /* min-height: 22px; */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #585858;
    opacity: 1;
    display: flex;
    justify-content: center;
}

/* Section body */
.land-body {
    width: 100%;
    height: auto;
    min-height: 244px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
    margin: 0 auto;
}

/* Rows */
.land-row {
    width: 100%;
    height: auto;
    min-height: 110px;
    display: flex;
    gap: 24px;
    opacity: 1;
}

/* Boxes */
.land-box {
    width: 100%;
    /* max-width: 394.67px; */
    height: auto;
    /* min-height: 110px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    border-radius: 24px;
    padding: 20px;
    background-color: #F4F6F8;
}

/* Name and icon container */
.land-name-icon {
    width: 100%;
    /* max-width: 354.67px; */
    height: auto;
    /* min-height: 36px; */
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
}

/* Icon part */
.land-icon-part {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 1;
    border-radius: 100px;
    background-color: rgba(11, 158, 140, 0.12);
}

.land-icon {
    width: 20px;
    height: 20px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.land-icon-inner {
    width: 10.83px;
    height: 8.33px;
    opacity: 1;
    border: 1.67px solid #0B9E8C;
}

/* Name text */
.land-name-text {
    width: auto;
    height: auto;
    min-height: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #121212;
    opacity: 1;
}

/* Description */
.land-description {
    width: 100%;
    max-width: 354.67px;
    height: auto;
    min-height: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 1;
}

.land-description-text {
    width: 100%;
    height: auto;
    min-height: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #585858;
    opacity: 1;
}

/* Responsive design */
@media (max-width: 1024px) {
    .land-section {
        padding: 50px 60px;
        gap: 40px;
    }

    .land-header {
        padding: 0 60px;
    }

    .land-row {
        flex-wrap: wrap;
    }

    .land-box {
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .land-section {
        padding: 40px 30px;
        gap: 30px;
    }

    .land-header {
        padding: 0 30px;
    }

    .land-title-text {
        font-size: 28px;
    }

    .land-box {
        max-width: 100%;
    }

    .land-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .land-section {
        padding: 30px 20px;
        gap: 20px;
    }

    .land-header {
        padding: 0 20px;
    }

    .land-title-text {
        font-size: 24px;
    }

    .land-name-text {
        font-size: 18px;
    }

    .land-description-text,
    .land-header-description-text {
        font-size: 14px;
    }
}
























































.community-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 54px;
    padding-top: 74px;
    padding-bottom: 74px;
    background-color: #F4F6F8;
}

/* Header styles */
.community-header {
    width: 100%;
    height: 69px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 104px;
    gap: 4px;
    opacity: 1;
}

.community-header-content {
    width: 422px;
    height: 69px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
}

.community-title {
    width: 422px;
    height: 39px;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #121212;
    opacity: 1;
}

.community-description {
    width: 233px;
    height: 22px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #121212;
    opacity: 1;
}

.community-slider-controls {
    /* width: 475.5px; */
    height: 32px;
    display: flex;
    gap: 24px;
    opacity: 1;
}

.community-slider-buttons {
    width: 78px;
    height: 32px;
    display: flex;
    gap: 14px;
    opacity: 1;
}

.community-slider-button {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    border: 1px solid #D5D5D5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.community-slider-button.prev {
    border: 2px solid #D9D9D9;
    background-color: transparent;
    color: #777;
    /* background: white; */
    /* transform: rotate(-180deg); */
}

.community-slider-button.prev svg path {
    /* fill: #121212; */
    stroke: currentColor;
}

.community-slider-button.next {
    background: #121212;
}

.community-slider-button.next svg path {
    /* fill: white; */
    stroke: currentColor;
}

.community-slider-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.community-slider-button.prev:hover {
    transform: rotate(-180deg) scale(1.05);
}

/* Slider body styles */
.community-slider-body {
    width: 100%;
    height: 266px;
    padding: 0 48px;
    overflow: hidden;
    position: relative;
    opacity: 1;
}

.community-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.community-card {
    width: 396px;
    height: 266px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0px 12px 32px 0px #00221E0A;
    flex-shrink: 0;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 16px 40px 0px #00221E1A;
}

.community-card-content {
    width: 356px;
    height: 226px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 1;
}

.community-stars {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: space-between;
    opacity: 1;
}

.community-star-container {
    width: 100px;
    height: 20px;
    display: flex;
    gap: 8px;
    opacity: 1;
}

.community-star {
    width: 20px;
    height: 20px;
    position: relative;
    opacity: 1;
}

.community-star-inner {
    width: 16.67px;
    height: 15.89px;
    position: absolute;
    top: 1.67px;
    left: 1.67px;
    background: #0B9E8C;
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
}

.community-review {
    width: 356px;
    height: 110px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #121212;
    opacity: 1;
}

.community-reviewer {
    width: 356px;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
}

.community-reviewer-info {
    width: 89px;
    height: 44px;
    display: flex;
    gap: 12px;
    align-items: center;
    opacity: 1;
}

.community-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    opacity: 1;
}

.community-reviewer-name {
    width: 33px;
    height: 24px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #121212;
    opacity: 1;
}

.community-review-time {
    width: 79px;
    height: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
}

.community-time-text {
    width: 79px;
    height: 17px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #585858;
    opacity: 1;
}

/* Animation for slider */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.community-card {
    animation: slideIn 0.5s ease forwards;
}

/* Resume Preview Styles */
.resume-preview {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
    font-family: 'Inter', sans-serif;
}

.resume-header {
    /* padding: 2rem; */
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.resume-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* .resume-content {
            padding: 2rem;
        } */

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.summary-section,
.experience-section,
.education-section,
.skills-section {
    margin-bottom: 2rem;
}

.experience-item,
.education-item {
    margin-bottom: 1.5rem;
}

.job-title,
.degree-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.company-name,
.institution-name {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.date-range {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.skill-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    margin: 0.25rem;
}

/* Template-specific styles */
.template-1 .resume-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.template-2 .resume-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.template-3 .resume-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Font family variations */
.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-georgia {
    font-family: Georgia, serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.font-nunito {
    font-family: 'Nunito', sans-serif;
}

/* Header style variations */
.header-gradient .resume-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.header-solid .resume-header {
    background: #3b82f6;
}

.header-minimal .resume-header {
    background: #f8f9fa;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

/* Density variations */
.density-comfortable {
    padding: 1rem;
    font-size: 1rem;
}

.density-cozy {
    padding: 0.75rem;
    font-size: 0.9rem;
}

.density-compact {
    padding: 0.5rem;
    font-size: 0.8rem;
}

/* Color theme variations */
.theme-blue .resume-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.theme-green .resume-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.theme-purple .resume-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.theme-red .resume-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.theme-orange .resume-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.theme-teal .resume-header {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .community-section {
        height: auto;
        padding: 50px 20px;
    }

    .community-header {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .community-header-content {
        text-align: center;
        width: 100%;
    }

    .community-title,
    .community-description {
        width: 100%;
    }

    .community-description {
        margin-top: 18px;
    }

    .community-slider-controls {
        margin-top: 10px;
    }

    .community-slider-body {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .community-card {
        width: 300px;
    }

    .community-card-content,
    .community-review {
        width: 100%;
    }

    .community-review {
        height: auto;
        min-height: 140px;
    }

    .community-reviewer {
        height: auto;
    }
}





























.inquiry-section {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 74px 104px;
    margin: 0 auto;
    opacity: 1;
    background-color: white;
}

.inquiry-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 54px;
}

/* Header styles */
.inquiry-header {
    width: 100%;
    /* max-width: 100%; */
    height: 65px;
    padding: 0 104px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 1;
}

.inquiry-header-content {
    width: 100%;
    height: 65px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
}

.inquiry-title {
    width: 100%;
    height: 39px;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #121212;
    opacity: 1;
    display: flex;
    justify-content: center;
}

.inquiry-description {
    width: 100%;
    height: 22px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #585858;
    opacity: 1;
    display: flex;
    justify-content: center;
}

/* FAQ Body styles */
.inquiry-body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 1;
}

.inquiry-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #D5D5D5;
    opacity: 1;
    transition: all 0.3s ease;
}

.inquiry-item-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
}

.inquiry-question-container {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    opacity: 1;
}

.inquiry-question {
    width: 336px;
    height: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #121212;
    opacity: 1;
}

.inquiry-dropdown {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background: #0B9E8C1F;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 1;
}

.inquiry-arrow {
    width: 20px;
    height: 20px;
    position: relative;
    opacity: 1;
}

.inquiry-arrow-icon {
    width: 10px;
    height: 5px;
    position: absolute;
    top: 7.5px;
    left: 5px;
    border: 1.67px solid #0B9E8C;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.inquiry-answer {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    opacity: 1;
}

.inquiry-answer-text {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #121212;
    opacity: 1;
}

/* Active state for expanded items */
.inquiry-item.active .inquiry-answer {
    height: auto;
    padding-top: 12px;
}

.inquiry-item.active .inquiry-dropdown {
    transform: rotate(180deg);
}

.inquiry-item.active .inquiry-arrow-icon {
    transform: rotate(135deg);
}

/* Hover effects */
.inquiry-question-container:hover .inquiry-question {
    color: #0B9E8C;
}

.inquiry-question-container:hover .inquiry-dropdown {
    background: #0B9E8C;
}

.inquiry-question-container:hover .inquiry-arrow-icon {
    border-color: white;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .inquiry-section {
        padding: 50px 20px;
        height: auto;
    }

    .inquiry-header {
        padding: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .inquiry-header-content {
        width: 100%;
    }

    .inquiry-title,
    .inquiry-description {
        width: 100%;
    }

    .inquiry-description {
        margin-top: 18px;
    }

    .inquiry-body {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .inquiry-question {
        width: 80%;
        font-size: 18px;
    }

    .inquiry-answer-text {
        font-size: 15px;
        line-height: 20px;
    }
}





























.users-section {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 104px 74px 104px;
    opacity: 1;
    background-color: white;
}

.users-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 1;
}

.users-title {
    width: 100%;
    /* height: 53px; */
    font-weight: 700;
    font-style: bold;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    opacity: 1;
}

.users-description {
    width: 100%;
    /* height: 28px; */
    font-weight: 400;
    font-style: regular;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    opacity: 1;
}

.users-buttons {
    width: 382px;
    height: 47px;
    display: flex;
    gap: 24px;
    opacity: 1;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    font-weight: 600;
    font-style: semi-bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    width: 167px;
    height: 47px;
    padding: 14px 24px;
    background: #0B9E8C;
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background: #098d7c;
    transform: translateY(-2px);
}

.btn-secondary {
    width: 191px;
    height: 47px;
    padding: 14px 24px;
    border: 1px solid #0B9E8C;
    color: #0B9E8C;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(11, 158, 140, 0.1);
    transform: translateY(-2px);
}


























.footer {
    width: 100%;
    background: #00221E;
    position: relative;
    margin-top: auto;
}

.footer-main {
    /* max-width: 1440px;   */
    margin: 0 auto;
    padding: 74px 104px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    box-sizing: border-box;
}

/* Left Section */
.footer-left {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.footer-logo {
    width: 220px;
    height: 56.57px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #F7F7F7;
    margin: 0;
}


.footer-center {
    width: 220px;
    /* from Figma */
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

/* Right Section */
.footer-right {
    width: 220px;
    /* from Figma */
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
    line-height: 22px;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-column-right {
    display: flex;
    flex-direction: column;
}

.footer-column-right h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #F7F7F7;
    margin: 0 0 20px 0;
}

.footer-column-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column-right li {
    margin-bottom: 8px;
}

.footer-column-right a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column-right a:hover {
    opacity: 0.8;
}

.copyright {
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #121212;
    margin: 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .footer-main {
        padding: 60px 50px;
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-center {
        width: 100%;
        justify-content: space-between;
    }

    .footer-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px;
    }

    .footer-center {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .copyright {
        height: auto;
        padding: 15px;
    }
}
