
* {
    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;
} */




/* 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;
}




/* 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%;
}
}
@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;
}
}


















.template-page-section-container {
    width: 100%;
    margin-bottom: 32px;
    margin-top: 50px;
    background: #FFFFFF;
}

.template-section-header {
    width: 100%;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.template-section-title {
    width: auto;
    height: auto;
    font-weight: 600;
    font-size: 24px;

    color: var(--text-color);
}

.template-section-description {
    width: auto;
    height: auto;
    color: #121212;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
}

.template-create-new-btn {
    width: 241px;
    height: 52px;
    border-radius: 24px;
    padding: 14px 24px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    color: white;
}

.template-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.template-btn-icon-inner {
    width: 14px;
    height: 14px;
    /* border: 2px solid #FFFFFF; */
    position: absolute;
    top: 2px;
    left: 8px;
    display: flex;
    justify-content: center;
}

.template-btn-text {
    width: 157px;
    height: 19px;
    font-weight: 600;
    font-size: 16px;

    color: #FFFFFF;
}

.templates-grid {
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.template-card-wrapper {
    width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
}

.template-card {
    width: 100%;
    min-width: 260px;
    border-radius: 24px;
    background: #FFFFFF;
    /* box-shadow: var(--card-shadow); */
    box-shadow: 0px 12px 32px 0px #00221E0A;
    overflow: hidden;
}

.template-image {
    width: 100%;
    height: 264px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    /* background: linear-gradient(135deg, #0B9E8C 0%, #0b9e8c80 100%); */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 12px;
}

.template-body {
    width: 100%;
    height: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.template-info {
    width: 100%;
    height: 62px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.template-name {
    width: 197px;
    height: 24px;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-color);
    white-space: nowrap;
}

.template-description {
    width: 100%;
    height: 34px;
    font-weight: 400;
    font-size: 14px;
    color: var(--light-text);
}

.template-tags {
    width: 100%;
    height: 24.33px;
    display: flex;
    justify-content: space-between;
}

.tag {
    height: 24.25px;
    border-radius: 9.25px;
    padding: 4.62px 9.25px;
    display: flex;
    align-items: center;
    gap: 6.17px;
}

.featured-tag {
    background: var(--featured-bg);
    width: 89.53px;
}

.premium-tag {
    background: #0D6EFD;
    width: 88.8888931274414;
    height: 24.33333396911621;
    gap: 6.22px;
    border-radius: 9.33px;
    padding-top: 4.67px;
    padding-right: 9.33px;
    padding-bottom: 4.67px;
    padding-left: 9.33px;
}

.executive-tag {
    background: #0DCAF0;
    width: 91.84210205078125;
    height: 23.842105865478516;
    gap: 5.89px;
    border-radius: 8.84px;
    padding-top: 4.42px;
    padding-right: 8.84px;
    padding-bottom: 4.42px;
    padding-left: 8.84px;
}

.tag-icon {
    width: 13.87px;
    height: 13.87px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.star-icon {
    width: 11.56px;
    height: 11.02px;
    border: 1.16px solid var(--text-color);
    position: absolute;
    top: 1.16px;
    left: 1.15px;
}

.tag-text {
    height: 15px;
    font-weight: 400;
    font-size: 12px;

    color: var(--text-color);
    align-items: center;
    display: flex;
}

.premium-tag-text {
    height: 15px;
    font-weight: 400;
    font-size: 12px;

    color: #FFFFFF;
    align-items: center;
    display: flex;
}

.executive-tag-text {
    height: 15px;
    font-weight: 400;
    font-size: 12px;

    color: #FFFFFF;
    align-items: center;
    display: flex;
}

.template-stats {
    width: 100%;
    height: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.star-download {
    display: flex;
    width: 109;
    height: 18;
    gap: 14px;
}

.download-stat {
    width: 50px;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-text {
    height: 17px;
    font-weight: 400;
    font-size: 14px;

    color: #AEAEAE;
    display: flex;
    align-items: center;
}

.free-badge {
    height: 17px;
    font-weight: 400;
    font-size: 14px;

    color: #AEAEAE;
    font-family: Inter;
}

.template-actions {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.use-template-btn {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: #0B9E8C1F;
    /* background: rgb(11, 158, 140); */
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.use-template-btn p {
    color: #0B9E8C;
    font-family: Inter;
font-weight: 600;
font-style: Semi Bold;
font-size: 16px;
text-align: center;
}
.use-template-btn i {
    color: #0B9E8C;
}

.action-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-icon {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background: rgba(11, 158, 140, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.action-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.template-navigation {
    display: flex;
    width: 78px;
    height: 32px;
    gap: 14px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arrow-left {
    border: 1px solid #D5D5D5;
    /* transform: rotate(-180deg); */
}

.arrow-right {
    background: #0B9E8C;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.arrow-icon-inner {
    position: absolute;
    width: 5px;
    height: 10px;
    top: 5px;
    left: 7.5px;
    border-style: solid;
    border-width: 0 1.67px 1.67px 0;
}

.arrow-left .arrow-icon-inner {
    border-color: #AEAEAE;
    transform: rotate(135deg);
}

.arrow-right .arrow-icon-inner {
    border-color: #FFFFFF;
    transform: rotate(-45deg);
}

.template-categories {
    display: flex;
    width: 100%;
    height: 47px;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.template-categories::-webkit-scrollbar {
    height: 5px;
}

.template-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.template-categories::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;

    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-all {
    background: #0B9E8C;
    color: #FFFFFF;
}

.category-other {
    border: 1px solid #D5D5D5;
    color: #121212;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-content {
    padding: 20px 20px 36px 28px;
    /* width: calc(100% - 284px); */
}



















































 .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: 144px;
    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;
    }

    /* Template grid responsive for mobile */
    .template-card-wrapper {
        width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* Template grid responsive for tablet */
    .template-card-wrapper {
        width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    /* Template grid responsive for small mobile */
    .template-card-wrapper {
        width: 100%;
        flex: 0 0 100%;
    }
}





















  .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-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: 768px;
    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: 768px;
    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);
}


















