* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F3EE;
    color: #202020;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 13vh;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #FAF9F6;
    cursor: pointer;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header div {
    display: flex;
}

.h_img {
    width: 14%;
}

.h_img img {
    width: 150px;
    height: auto;
}

.h_div1 {
    width: 40%;
    align-items: center;
    justify-content: space-evenly;
    font-size: 17px;
}

.h_div1 a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    white-space: nowrap;
}

.h_div1 a:hover {
    color: #7E0A1F;
}

.h_div2 {
    width: 22%;
    align-items: center;
}

.h_div2 div {
    width: 50%;
    align-items: center;
    justify-content: space-around;
}

.h_div2 svg {
    padding: 5%;
    width: 18%;
    height: 18%;
    justify-content: center;
    background: #1C5627;
    border-radius: 8px;
    flex-shrink: 0;
}

.h_div2 a {
    padding-top: 1%;
    color: #000;
    font-weight: bold;
    font-size: 14.5px;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.h_div2 a:hover {
    color: #7E0A1F;
}

main {
    width: min(1400px, 90%);
    margin: 0 auto;
    padding-top: 13vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 35px 0 40px;
    font-size: 16px;
    font-weight: bold;
}

.breadcrumb a {
    text-decoration: none;
    color: #777;
}

.breadcrumb a:hover {
    color: #7E0A1F;
}

.breadcrumb .active {
    color: #1C5627;
}

.breadcrumb span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.career-hero {
    min-height: 470px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #F9F7F2;
    border-radius: 20px;
    padding: 65px 75px;
    overflow: hidden;
    border: 1px solid rgba(28, 86, 39, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hero-content {
    width: 58%;
    min-width: 0;
}

.career-label {
    display: inline-block;
    color: #7E0A1F;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    color: #202020;
    margin-bottom: 25px;
    overflow-wrap: break-word;
}

.hero-content h1 span {
    display: block;
    color: #7E0A1F;
}

.hero-content p {
    max-width: 650px;
    color: #5d5d5d;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 23px;
    background: #1C5627;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
}

.hero-button:hover {
    background: #7E0A1F;
    transform: translateY(-3px);
}

.hero-button span {
    font-size: 20px;
}

.hero-decoration {
    width: 34%;
    height: 330px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.big-letter {
    position: absolute;
    font-size: 330px;
    font-weight: bold;
    color: rgba(28, 86, 39, 0.07);
    line-height: 1;
    user-select: none;
}

.decoration-card {
    position: relative;
    z-index: 2;
    width: 260px;
    max-width: 100%;
    padding: 30px;
    background: #1C5627;
    color: white;
    border-radius: 14px;
    box-shadow: 15px 15px 0 rgba(126, 10, 31, 0.12);
}

.decoration-card strong {
    display: block;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.decoration-card span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.why-section {
    padding: 100px 0 80px;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.small-title {
    color: #7E0A1F;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-heading h2 {
    color: #1C5627;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-heading p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    position: relative;
    padding: 35px;
    background: #FAF9F6;
    border-radius: 14px;
    border: 1px solid rgba(28, 86, 39, 0.1);
    transition: 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    color: #7E0A1F;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 25px;
}

.benefit-card h3 {
    color: #1C5627;
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.application-section {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 70px;
    margin-bottom: 80px;
    background: #1C5627;
    border-radius: 20px;
    color: white;
}

.application-info {
    min-width: 0;
    padding-right: 30px;
}

.application-info .career-label {
    color: #DDB6BD;
}

.application-info h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    overflow-wrap: break-word;
}

.application-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.application-note {
    padding-left: 18px;
    border-left: 3px solid #7E0A1F;
}

.cv-box {
    width: 100%;
    padding: 45px 35px;
    text-align: center;
    background: #F9F7F2;
    color: #202020;
    border-radius: 15px;
    border: 2px dashed rgba(126, 10, 31, 0.35);
    transition: 0.3s ease;
}

.cv-box:hover {
    border-color: #7E0A1F;
    transform: translateY(-4px);
}

.cv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #7E0A1F;
    background: rgba(126, 10, 31, 0.08);
    border-radius: 50%;
}

.cv-box h3 {
    color: #1C5627;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.cv-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cv-box input[type="file"] {
    display: none;
}

.upload-button {
    display: inline-block;
    padding: 13px 28px;
    background: #7E0A1F;
    color: white;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

.upload-button:hover {
    background: #65101f;
    transform: translateY(-2px);
}

.file-info {
    margin-top: 15px;
    color: #999;
    font-size: 12px;
    line-height: 1.5;
}

.send-btn {
    display: block;
    width: auto;
    max-width: 100%;
    padding: 14px 20px;
    margin: 18px auto 0;
    border: none;
    border-radius: 8px;
    background: #1C5627;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #16451f;
    transform: translateY(-2px);
}

.career-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 45px 50px;
    margin-bottom: 60px;
    background: #FAF9F6;
    border-radius: 15px;
    border-left: 5px solid #7E0A1F;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.career-contact > div {
    min-width: 0;
}

.career-contact > div > span {
    display: block;
    color: #7E0A1F;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.career-contact h2 {
    color: #1C5627;
    font-size: 28px;
    line-height: 1.3;
}

.career-contact a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 22px;
    background: #1C5627;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-weight: bold;
    transition: 0.3s ease;
}

.career-contact a:hover {
    background: #7E0A1F;
}

.career-contact a span {
    color: white;
    margin: 0;
    font-size: 20px;
}

.footer {
    width: 100%;
    background-color: #24332B;
    color: #FAF9F6;
}

.footer-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 40px 45px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 70px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand img {
    width: 150px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    color: rgba(250, 249, 246, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.footer h3 {
    margin: 0 0 22px;
    color: #FAF9F6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(250, 249, 246, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-contact p {
    max-width: 250px;
    margin-top: 8px;
    color: rgba(250, 249, 246, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    width: calc(100% - 80px);
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(250, 249, 246, 0.15);
}

.footer-bottom p {
    margin: 0;
    color: rgba(250, 249, 246, 0.55);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1200px) {

    header {
        height: 105px;
        padding: 10px 20px;
    }

    .h_img {
        width: 18%;
    }

    .h_img img {
        width: 120px;
        height: auto;
    }

    .h_div1 {
        width: 42%;
        font-size: 15px;
        gap: 15px;
    }

    .h_div2 {
        width: 32%;
    }

    .h_div2 div {
        width: 50%;
    }

    .h_div2 a {
        font-size: 12px;
    }

    .h_div2 svg {
        width: 22px;
        height: 22px;
        padding: 4px;
    }

    main {
        width: 90%;
        padding-top: 105px;
    }

    .breadcrumb {
        margin-top: 30px;
    }

    .career-hero {
        padding: 50px;
        gap: 35px;
    }

    .hero-content {
        width: 58%;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-decoration {
        width: 38%;
        height: 300px;
    }

    .big-letter {
        font-size: 300px;
    }

    .application-section {
        gap: 40px;
        padding: 50px;
    }

    .application-info h2 {
        font-size: 34px;
    }

    .footer-container {
        gap: 45px;
    }
}

@media (max-width: 870px) {

    header {
        position: fixed;
        width: 100%;
        height: auto;
        min-height: 105px;
        padding: 8px 15px;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 48px 35px;
        align-items: center;
        gap: 3px 10px;
    }

    .h_img {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .h_img img {
        width: 100px;
        height: auto;
    }

    .h_div2 {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .h_div2 div {
        width: auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .h_div2 svg {
        width: 19px;
        height: 19px;
        padding: 3px;
        flex-shrink: 0;
        background: #1C5627;
        border-radius: 6px;
    }

    .h_div2 a {
        font-size: 10px;
        white-space: nowrap;
    }

    .h_div1 {
        grid-column: 1 / 3;
        grid-row: 2;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        font-size: 13px;
    }

    .h_div1 a {
        white-space: nowrap;
    }

    main {
        width: 90%;
        padding-top: 105px;
    }

    .breadcrumb {
        margin: 25px 0 30px;
        gap: 9px;
        font-size: 15px;
    }

    .career-hero {
        min-height: auto;
        flex-direction: column;
        gap: 35px;
        padding: 40px 35px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-button {
        margin: 0 auto;
    }

    .hero-decoration {
        width: 100%;
        height: 240px;
    }

    .big-letter {
        font-size: 240px;
    }

    .decoration-card {
        width: 240px;
    }

    .why-section {
        padding: 75px 0 65px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-card {
        padding: 30px;
    }

    .application-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 35px;
        margin-bottom: 60px;
    }

    .application-info {
        padding-right: 0;
    }

    .application-info h2 {
        font-size: 32px;
    }

    .cv-box {
        max-width: 600px;
        margin: 0 auto;
    }

    .career-contact {
        padding: 35px;
        margin-bottom: 50px;
    }

    .career-contact h2 {
        font-size: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        padding: 50px 25px 40px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: calc(100% - 50px);
    }
}

@media (max-width: 600px) {

    header {
        min-height: 100px;
        padding: 7px 10px;
        grid-template-columns: 1fr auto;
        grid-template-rows: 43px 36px;
        gap: 3px 5px;
    }

    .h_img img {
        width: 85px;
    }

    .h_div2 {
        gap: 6px;
    }

    .h_div2 div {
        gap: 3px;
    }

    .h_div2 svg {
        width: 17px;
        height: 17px;
        padding: 3px;
        border-radius: 5px;
    }

    .h_div2 a {
        font-size: 8px;
    }

    .h_div1 {
        gap: 16px;
        font-size: 11px;
    }

    main {
        width: 92%;
        padding-top: 100px;
    }

    .breadcrumb {
        margin: 20px 0 25px;
        gap: 7px;
        font-size: 13px;
    }

    .career-hero {
        gap: 25px;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .career-label {
        font-size: 11px;
        letter-spacing: 1.4px;
        margin-bottom: 13px;
    }

    .hero-content h1 {
        font-size: 31px;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 25px;
    }

    .hero-button {
        width: 100%;
        padding: 13px 16px;
        gap: 12px;
        font-size: 14px;
    }

    .hero-decoration {
        height: 190px;
        margin-top: 5px;
    }

    .big-letter {
        font-size: 190px;
    }

    .decoration-card {
        width: 200px;
        padding: 22px;
        border-radius: 12px;
    }

    .decoration-card strong {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .decoration-card span {
        font-size: 13px;
        line-height: 1.5;
    }

    .why-section {
        padding: 60px 0 50px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section-heading h2 {
        font-size: 27px;
        margin-bottom: 12px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .benefits {
        gap: 15px;
    }

    .benefit-card {
        padding: 22px;
        border-radius: 12px;
    }

    .benefit-number {
        margin-bottom: 18px;
    }

    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 11px;
    }

    .benefit-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .application-section {
        gap: 25px;
        padding: 28px 20px;
        border-radius: 16px;
        margin-bottom: 45px;
    }

    .application-info h2 {
        font-size: 27px;
        margin-bottom: 18px;
    }

    .application-info p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 15px;
    }

    .application-note {
        padding-left: 13px;
    }

    .cv-box {
        padding: 30px 18px;
        border-radius: 12px;
    }

    .cv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .cv-icon svg {
        width: 32px;
        height: 32px;
    }

    .cv-box h3 {
        font-size: 21px;
    }

    .cv-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .upload-button {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }

    .send-btn {
        width: 100%;
        padding: 13px 15px;
        font-size: 14px;
    }

    .file-info {
        font-size: 11px;
    }

    .career-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 28px 20px;
        margin-bottom: 40px;
        border-left-width: 4px;
        border-radius: 12px;
    }

    .career-contact > div > span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .career-contact h2 {
        font-size: 21px;
        line-height: 1.35;
    }

    .career-contact a {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 14px;
    }

    .footer {
        margin-top: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand img {
        width: 135px;
        margin-bottom: 17px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.65;
    }

    .footer h3 {
        margin-bottom: 17px;
        font-size: 14px;
    }

    .footer-links a,
    .footer-contact a {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom {
        width: calc(100% - 40px);
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 360px) {

    header {
        min-height: 98px;
        padding: 6px 8px;
    }

    .h_img img {
        width: 75px;
    }

    .h_div2 {
        gap: 4px;
    }

    .h_div2 a {
        font-size: 7px;
    }

    .h_div2 svg {
        width: 15px;
        height: 15px;
        padding: 2px;
    }

    .h_div1 {
        gap: 12px;
        font-size: 10px;
    }

    main {
        width: 92%;
        padding-top: 98px;
    }

    .breadcrumb {
        margin-top: 17px;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .career-hero {
        padding: 23px 14px;
        gap: 20px;
        border-radius: 13px;
    }

    .career-label {
        font-size: 9px;
        letter-spacing: 1.1px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-button {
        padding: 11px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .hero-button span {
        font-size: 17px;
    }

    .hero-decoration {
        height: 155px;
    }

    .big-letter {
        font-size: 155px;
    }

    .decoration-card {
        width: 170px;
        padding: 18px;
    }

    .decoration-card strong {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 7px;
    }

    .decoration-card span {
        font-size: 11px;
    }

    .why-section {
        padding: 45px 0 40px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .benefit-card {
        padding: 18px;
    }

    .benefit-number {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .application-section {
        padding: 22px 14px;
        gap: 20px;
        border-radius: 13px;
    }

    .application-info h2 {
        font-size: 22px;
    }

    .application-info p {
        font-size: 13px;
    }

    .cv-box {
        padding: 22px 13px;
    }

    .cv-icon {
        width: 52px;
        height: 52px;
    }

    .cv-icon svg {
        width: 28px;
        height: 28px;
    }

    .cv-box h3 {
        font-size: 18px;
    }

    .cv-box p {
        font-size: 13px;
    }

    .upload-button,
    .send-btn {
        font-size: 12px;
        padding: 11px 10px;
    }

    .file-info {
        font-size: 10px;
    }

    .career-contact {
        padding: 22px 14px;
        gap: 17px;
    }

    .career-contact h2 {
        font-size: 18px;
    }

    .career-contact a {
        font-size: 12px;
        padding: 11px 12px;
    }

    .career-contact a span {
        font-size: 17px;
    }

    .footer-container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.no-cv-section {
    width: 100%;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid #E5E1D8;
}

.no-cv-section h4 {
    margin-bottom: 7px;
    color: #252824;
    font-size: 18px;
    font-weight: 700;
}

.no-cv-section p {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.no-cv-section textarea {
    width: 100%;
    min-height: 110px;
    padding: 13px 15px;
    border: 1px solid #D8D5CC;
    border-radius: 10px;
    background-color: #FAF9F6;
    color: #252824;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.no-cv-section textarea::placeholder {
    color: #999;
}

.no-cv-section textarea:focus {
    border-color: #1C5627;
    box-shadow: 0 0 0 3px rgba(28, 86, 39, 0.08);
}

@media (max-width: 900px) {
    .no-cv-section {
    margin-top: 22px;
    padding-top: 20px;
    }

    .no-cv-section h4 {
        font-size: 17px;
    }

    .no-cv-section p {
        font-size: 13px;
    }

    .no-cv-section textarea {
        min-height: 105px;
        font-size: 13px;
    }

}

@media (max-width: 600px) {
    .no-cv-section {
    margin-top: 20px;
    padding-top: 18px;
    }

    .no-cv-section h4 {
        font-size: 16px;
    }

    .no-cv-section p {
        font-size: 12px;
        line-height: 1.4;
    }

    .no-cv-section textarea {
        min-height: 100px;
        padding: 11px 12px;
        font-size: 12px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .no-cv-section {
    margin-top: 18px;
    padding-top: 16px;
    }


    .no-cv-section h4 {
        font-size: 15px;
    }

    .no-cv-section p {
        font-size: 11px;
    }

    .no-cv-section textarea {
        min-height: 90px;
        padding: 10px;
        font-size: 11px;
    }
}
