/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
}

a{
    text-decoration: none;
}

/* Application Form Section */
.application-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    width: 100%;
}

.application-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.application-form-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.application-form-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.application-form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.application-form-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.application-form-form-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.application-form-description {
    color: #666666;
    line-height: 1.6;
    font-size: 1rem;
}

.application-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFBB33;
}

.application-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.application-form-group {
    margin-bottom: 25px;
}

.application-form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3D1737;
    margin-bottom: 8px;
}

.application-form-group input,
.application-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.application-form-group input:focus,
.application-form-group select:focus {
    outline: none;
    border-color: #FFBB33;
    box-shadow: 0 0 0 3px rgba(255, 187, 51, 0.1);
}

.application-radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.application-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #3D1737;
}

.application-radio-label input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: #FFBB33;
}

.application-radio-text {
    font-size: 1rem;
}

.application-job-description {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFBB33;
    font-size: 1rem;
    color: #3D1737;
    line-height: 1.6;
    margin: 20px 0;
}

.application-submit-button {
    background-color: #3D1737;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-submit-button:hover {
    background-color: #FFBB33;
    color: #3D1737;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px #000000;
}

/* Responsive Design for Application Form */
@media (max-width: 1024px) {
    .application-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .application-form-title {
        font-size: 2.5rem;
    }
    
    .application-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .application-radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Header styles */
.header {
    background-color: #3D1737;
    color: #ffffff;
    width: 100%;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border-bottom: 2px solid #FFBB33;
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo .accent {
    color: #FFBB33;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    border-color: #FFBB33;
    color: #FFBB33;
    background-color: rgba(255, 187, 51, 0.1);
}

/* Hero section */
.hero {
    background-color: #3D1737;
    color: #ffffff;
    padding: 80px 0;
    margin-bottom: 0;
    width: 100%;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 3px 3px 0px #FFBB33;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-button {
    background-color: #FFBB33;
    color: #3D1737;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #000000;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px #000000;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #FFBB33;
    box-shadow: 10px 10px 0px #000000;
    border-radius: 10px;
}

/* Stats section */
.stats {
    background-color: #3D1737;
    color: #ffffff;
    margin: 0;
    padding: 80px 0;
    border: 2px solid #FFBB33;
    box-shadow: 5px 5px 0px #000000;
    width: 100%;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #000000;
    line-height: 1;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Career Fields section */
.career-fields {
    background-color: #3D1737;
    padding: 80px 0;
    width: 100%;
}

.career-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.career-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.career-cta {
    background-color: #FFBB33;
    color: #3D1737;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.career-cta:hover {
    background-color: #3D1737;
    color: #FFBB33;
    transform: translateY(-2px);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-card:hover {
    border-color: #FFBB33;
}

.career-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #FFBB33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}


/* Tech icon */
.tech-icon::before {
    content: "{}";
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
}

/* Marketing icon */
.marketing-icon::before {
    content: "📈";
    font-size: 2rem;
}

/* Design icon */
.design-icon::before {
    content: "◐";
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
}

/* Writing icon */
.writing-icon::before {
    content: "✎";
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
}

/* Support icon */
.support-icon::before {
    content: "●";
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
}

/* Data icon */
.data-icon::before {
    content: "▣";
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
}

.career-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3D1737;
    margin-bottom: 15px;
    line-height: 1.3;
}

.career-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Job Listings section */
.job-listings {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 0;
    width: 100%;
}

.job-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-header {
    text-align: center;
    margin-bottom: 60px;
}

.job-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #3D1737;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.job-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #FFBB33;
}

.job-location {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-category {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #FFBB33;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-position {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3D1737;
    margin-bottom: 15px;
    line-height: 1.3;
}

.job-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.job-salary {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFBB33;
    margin-bottom: 20px;
}

.job-button {
    background-color: #3D1737;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.job-button:hover {
    background-color: #FFBB33;
    color: #3D1737;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: rgba(255, 187, 51, 0.1);
    border: 2px solid #FFBB33;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #000000;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px #000000;
    background-color: rgba(255, 187, 51, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #FFBB33;
}

.feature-card p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Final Stats section */
.final-stats {
    background-color: #3D1737;
    color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.final-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-stats-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.final-stats-text {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    height: 100%;
}

.final-stat-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-stat-item:last-child {
    grid-column: 1 / -1;
    text-align: center;
}

.final-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #000000;
    line-height: 1;
}

.final-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 10px;
}

.final-stat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 0px #000000;
}

.final-stat-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.final-cta-button {
    background-color: #FFBB33;
    color: #3D1737;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #000000;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.final-cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px #000000;
}

.final-stats-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-stats-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #FFBB33;
    box-shadow: 10px 10px 0px #000000;
    border-radius: 10px;
}

/* Skills section */
.skills-section {
    background-color: #f8f9fa;
    color: #333333;
    padding: 80px 0;
    width: 100%;
}

.skills-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skills-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.skills-text {
    flex: 1;
    padding-right: 40px;
}

.skills-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #3D1737;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.skills-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.skills-cta-button {
    background-color: #3D1737;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    box-shadow: 5px 5px 0px #000000;
    text-decoration: none;
    display: inline-block;
}

.skills-cta-button:hover {
    background-color: #FFBB33;
    color: #3D1737;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px #000000;
}

.skills-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #FFBB33;
    box-shadow: 10px 10px 0px #000000;
    border-radius: 10px;
}

/* Steps section */
.steps-section {
    background-color: #3D1737;
    color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.steps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.steps-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background-color: rgba(255, 187, 51, 0.1);
    border: 2px solid #FFBB33;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background-color: rgba(255, 187, 51, 0.2);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #000000;
    line-height: 1;
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact section */
.contact-section {
    background-color: #f8f9fa;
    color: #333333;
    padding: 80px 0;
    width: 100%;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #3D1737;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.contact-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 40px;
}

.form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3D1737;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    background-color: #fff3cd;
    padding: 20px;
    border-left: 4px solid #FFBB33;
    border-radius: 5px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFBB33;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3D1737;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFBB33;
    box-shadow: 0 0 0 3px rgba(255, 187, 51, 0.1);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: #FFBB33;
}

.radio-text {
    font-weight: 500;
}

.job-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin: 0;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.phone-input:focus-within {
    border-color: #FFBB33;
    box-shadow: 0 0 0 3px rgba(255, 187, 51, 0.1);
}

.country-code {
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-right: 1px solid #e0e0e0;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #3D1737;
}

.phone-input input {
    border: none;
    padding: 12px 15px;
    flex: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
}

.phone-input input:focus {
    outline: none;
    box-shadow: none;
}

.submit-button {
    background-color: #3D1737;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    box-shadow: 5px 5px 0px #000000;
    width: 100%;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.submit-button:hover {
    background-color: #FFBB33;
    color: #3D1737;
    transform: translateY(-2px);
    box-shadow: 7px 7px 0px #000000;
}

/* FAQ section */
.faq-section {
    background-color: #3D1737;
    color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.faq-text {
    flex: 1;
    padding-right: 40px;
}

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.faq-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: rgba(255, 187, 51, 0.1);
    border: 2px solid #FFBB33;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 187, 51, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFBB33;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.faq-answer {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.faq-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #FFBB33;
    box-shadow: 10px 10px 0px #000000;
    border-radius: 10px;
}

/* Privacy Section */
.privacy-section {
    background-color: #f8f9fa;
    color: #333333;
    padding: 80px 0;
    width: 100%;
}

.privacy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3D1737;
    text-shadow: 2px 2px 0px #FFBB33;
}

.privacy-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 20px 0;
    color: #3D1737;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.privacy-text ul {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 30px;
    color: #333;
}

.privacy-text li {
    margin-bottom: 10px;
}

.privacy-text strong {
    color: #3D1737;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    background-color: #f8f9fa;
    color: #333333;
    padding: 80px 0;
    width: 100%;
}

.terms-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3D1737;
    text-shadow: 2px 2px 0px #FFBB33;
}

.terms-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 20px 0;
    color: #3D1737;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.terms-text ul {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 30px;
    color: #333;
}

.terms-text li {
    margin-bottom: 10px;
}

.terms-text strong {
    color: #3D1737;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #3D1737;
    color: #e0e0e0;
    padding: 60px 0 20px 0;
    border-top: 2px solid #FFBB33;
    width: 100%;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-address {
    margin-bottom: 15px;
}

.footer-address p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.footer-phone p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFBB33;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-link:hover {
    color: #FFBB33;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 187, 51, 0.3);
}

.footer-bottom p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

/* Final Stats responsive */
@media (max-width: 1024px) {
    .final-stats-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .final-stats-text {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
        height: auto;
    }
    
    .final-stat-item:last-child {
        grid-column: 1;
    }
    
    .final-stat-number {
        font-size: 3rem;
    }
    
    .final-stat-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .final-stats {
        padding: 60px 0;
    }
    
    .final-stats-content {
        gap: 30px;
    }
    
    .final-stats-text {
        gap: 25px;
    }
    
    .final-stat-number {
        font-size: 2rem;
    }
    
    .final-stat-title {
        font-size: 2rem;
    }
    
    .final-stat-label {
        font-size: 1.2rem;
    }
    
    .final-stat-desc {
        font-size: 1rem;
    }
    
    .final-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-stat-number {
        font-size: 2rem;
    }
    
    .final-stat-title {
        font-size: 1.6rem;
    }
    
    .final-stat-label {
        font-size: 1.1rem;
    }
}

/* Skills responsive */
@media (max-width: 1024px) {
    .skills-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .skills-text {
        padding-right: 0;
    }
    
    .skills-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .skills-section {
        padding: 60px 0;
    }
    
    .skills-content {
        gap: 30px;
    }
    
    .skills-title {
        font-size: 2rem;
    }
    
    .skills-description {
        font-size: 1.1rem;
    }
    
    .skills-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .skills-title {
        font-size: 2rem;
    }
    
    .skills-description {
        font-size: 1rem;
    }
}

/* Steps responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .steps-subtitle {
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 2rem;
    }
    
    .steps-subtitle {
        font-size: 1rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
}

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .radio-group {
        gap: 20px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .form-description {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-input {
        flex-direction: column;
        align-items: stretch;
    }
    
    .country-code {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* FAQ responsive */
@media (max-width: 1024px) {
    .faq-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .faq-text {
        padding-right: 0;
    }
    
    .faq-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content {
        gap: 30px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-address p {
        font-size: 0.9rem;
    }
    
    .footer-phone p {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.6rem;
    }
    
    .footer-address p {
        font-size: 0.8rem;
    }
    
    .footer-phone p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Job Listings responsive */
@media (max-width: 1024px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .job-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .job-listings {
        padding: 60px 0;
        margin: 60px 0;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-title {
        font-size: 2.2rem;
    }
    
    .job-subtitle {
        font-size: 1.1rem;
    }
    
    .job-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .job-title {
        font-size: 1.8rem;
    }
    
    .job-subtitle {
        font-size: 1rem;
    }
    
    .job-tags {
        gap: 6px;
    }
    
    .job-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

/* Career Fields responsive */
@media (max-width: 1024px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .career-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .career-fields {
        padding: 60px 0;
        margin: 60px 0;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-title {
        font-size: 2.2rem;
    }
    
    .career-description {
        font-size: 1.1rem;
    }
    
    .career-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .career-title {
        font-size: 1.8rem;
    }
    
    .career-description {
        font-size: 1rem;
    }
    
    .career-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Stats responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Privacy Responsive */
@media (max-width: 1024px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-text h2 {
        font-size: 1.3rem;
    }
    
    .privacy-text p,
    .privacy-text ul {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-text h2 {
        font-size: 1.2rem;
    }
    
    .privacy-text ul {
        padding-left: 20px;
    }
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    color: #333333;
    padding: 80px 0;
    width: 100%;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #3D1737;
    text-shadow: 2px 2px 0px #FFBB33;
}

.about-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFBB33;
}

.about-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 20px 0;
    color: #3D1737;
}

.about-section-title:first-child {
    margin-top: 0;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.about-values {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 30px;
    color: #333;
}

.about-values li {
    margin-bottom: 10px;
}

.about-values strong {
    color: #3D1737;
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-stat-item {
    background-color: #3D1737;
    color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 0px #000000;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px #000000;
}

.about-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFBB33;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #000000;
    line-height: 1;
}

.about-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* About Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .about-stat-item {
        flex: 1;
        min-width: 200px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-text {
        padding: 20px 15px;
    }
    
    .about-section-title {
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-values {
        padding-left: 20px;
    }
    
    .about-stat-item {
        padding: 20px;
    }
    
    .about-stat-number {
        font-size: 1.8rem;
    }
    
    .about-stat-label {
        font-size: 1rem;
    }
}

/* Terms Responsive */
@media (max-width: 1024px) {
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text h2 {
        font-size: 1.3rem;
    }
    
    .terms-text p,
    .terms-text ul {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-title {
        font-size: 1.8rem;
    }
    
    .terms-text h2 {
        font-size: 1.2rem;
    }
    
    .terms-text ul {
        padding-left: 20px;
    }
}
