/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin: 0;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e91e63;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #f06292 0%, #c2185b 100%);
}

.nav-cta::after {
    display: none;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(45, 45, 45, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #f06292 0%, #c2185b 100%);
}

/* Features Grid in Hero */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    color: #e91e63;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.how-it-works .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.how-it-works .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-gif {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}


.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* What Is A Transcriber Section */
.transcriber-info {
    padding: 100px 0;
    background-color: #2c2c2c;
    position: relative;
}

.wave-shape-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.wave-shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transcriber-info .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.transcriber-info .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.transcriber-info .info-text {
    text-align: left;
    line-height: 1.8;
}

.transcriber-info .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #f8d7da;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.transcriber-info .info-text p {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: 25px;
}

.transcriber-info .info-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #ffffff;
}

/* What Does A Transcriber Do Section */
.transcriber-do {
    padding: 100px 0;
    background-color: #2c2c2c;
    position: relative;
}

.transcriber-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.keyboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


.content-container {
    color: white;
}

.transcriber-do .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.transcriber-do .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.left-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-text {
    font-size: 1.2rem;
    color: #e9ecef;
    line-height: 1.7;
}

.right-container {
    display: flex;
    align-items: center;
}

.do-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.do-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.do-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.4);
    transform: translateX(10px);
}

.do-step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.do-step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.do-step-content p {
    font-size: 1rem;
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

.wave-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.wave-shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

/* No Experience Required Section */
.no-experience {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.no-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e91e63" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e91e63" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23e91e63" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.no-experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-content {
    padding-right: 20px;
}

.no-experience .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.no-experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 3px;
}

.no-experience .intro-text {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
    border: 2px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.requirement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.requirement-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.4;
}

.cta-container {
    margin-top: 40px;
}

.cta-button-secondary {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}


.cta-button-secondary:hover::before {
    left: 100%;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
}

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

.experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


/* Why Choose Transcription Section */
.why-choose {
    padding: 100px 0;
    background:  #ad1457;
    position: relative;
}

.wave-shape-top-pink {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.wave-shape-top-pink svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose .image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


.why-choose .text-content {
    color: white;
}

.why-choose .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.why-choose .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

.text-blocks p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.text-blocks p:last-child {
    margin-bottom: 0;
}

.text-blocks strong {
    color: #ffffff;
    font-weight: 600;
}

/* The Demand Is Growing Daily Section */
.demand-growing {
    padding: 100px 0;
    background:  #ad1457;
    position: relative;
}

.demand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demand-growing .text-content {
    color: white;
}

.demand-growing .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.demand-growing .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

.demand-growing .text-blocks p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.demand-growing .text-blocks p:last-child {
    margin-bottom: 0;
}

.demand-growing .text-blocks strong {
    color: #ffffff;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: #ad1457;
    text-align: center;
}

.cta-section .cta-container {
    margin: 0;
}


.demand-growing .image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demand-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


.wave-shape-bottom-pink {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.wave-shape-bottom-pink svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

/* How Much Do Transcribers Earn Section */
.earnings {
    padding: 100px 0;
    background-color: #ffffff;
}

.earnings-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.earnings .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    position: relative;
}

.earnings .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.earnings .intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.earnings-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


.earnings-card.beginner {
    border-color: rgba(76, 175, 80, 0.2);
}

.earnings-card.experienced {
    border-color: rgba(233, 30, 99, 0.2);
}

.card-header {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.beginner .card-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.experienced .card-header {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(233, 30, 99, 0.05) 100%);
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.beginner .level-icon {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.experienced .level-icon {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.hourly-rate {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.card-content {
    padding: 0 30px 40px;
}

.earning-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.earning-item:last-child {
    border-bottom: none;
}

.hours {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
}

/* Create Your Own Working Hours Section */
.working-hours {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.working-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.working-hours .image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.working-hours-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.working-hours-image:hover {
    transform: scale(1.02);
}

.working-hours .text-content {
    color: #2c2c2c;
}

.working-hours .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
    position: relative;
    text-align: left;
}

.working-hours .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.working-hours .text-blocks p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.working-hours .cta-container {
    margin-top: 0;
    text-align: left;
}


/* Work From Home Online Section */
.work-from-home {
    padding: 100px 0;
    background-color: #ffffff;
}

.work-from-home-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.work-from-home .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    position: relative;
}

.work-from-home .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 60px;
    font-weight: 500;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
}


.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.cta-container {
    margin-top: 40px;
}

.cta-button-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #f06292 0%, #c2185b 100%);
}

/* Professional Training Section */
.professional-training {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.professional-training-content {
    max-width: 1200px;
    margin: 0 auto;
}

.professional-training .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.professional-training .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.training-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.training-image {
    position: relative;
}

.training-img {
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.training-img:hover {
    transform: scale(1.02);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e91e63;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.3;
    position: relative;
    padding-right: 30px;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item:hover h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #ad1457;
    position: relative;
    z-index: 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wave-shape-top-testimonials {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave-shape-top-testimonials svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-shape-top-testimonials svg path {
    fill: #ffffff;
}

.wave-shape-bottom-testimonials {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-shape-bottom-testimonials svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-shape-bottom-testimonials svg path {
    fill: #ffffff;
}

.testimonials .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.trust-row {
    text-align: center;
    margin-bottom: 60px;
}

.trust-img {
    max-width: 100%;
    height: 100px;
    border-radius: 10px;
    @media screen and (max-width: 768px) {
        height: 50px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #e91e63;
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: #e91e63;
    font-family: serif;
    opacity: 0.3;
}

.review-text {
    margin-bottom: 20px;
    padding-left: 20px;
    flex-grow: 1;
}

.review-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.review-author {
    text-align: right;
    padding-left: 20px;
    margin-top: auto;
}

.review-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 5px 0;
}

.review-author span {
    font-size: 0.9rem;
    color: #e91e63;
    font-weight: 500;
}

/* Application Form Section */
.application-form {
    padding: 100px 0;
    background-color: #fff;
}

a{
    text-decoration: none;
}
.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.application-form .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.application-form .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

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

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #e91e63;
    border-color: #e91e63;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #f06292 0%, #c2185b 100%);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
}

.wave-shape-top-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.wave-shape-top-footer svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-shape-top-footer svg path {
    fill: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-item i {
    color: #e91e63;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    width: 16px;
}

.contact-item span {
    flex: 1;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #e91e63;
}

.legal-info p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.4;
}

.legal-info strong {
    color: #e91e63;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #cccccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e91e63;
    color: #ffffff;
    transform: translateY(-2px);
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: left;
}

.story-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-values {
    padding: 100px 0;
    background-color: #ad1457;
    color: white;
    position: relative;
    z-index: 0;
}

.mission-content .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.wave-shape-top-dark,
.wave-shape-bottom-dark {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-shape-top-dark {
    top: -1px;
}

.wave-shape-bottom-dark {
    bottom: -1px;
    transform: rotate(180deg);
}

.why-choose-us {
    padding: 100px 0;
    background-color: #ad1457;
    color: white;
    position: relative;
    z-index: 0;
}

.why-content .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

.why-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-item:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: translateY(-5px);
}

.why-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.why-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.5rem;
    color: white;
}

.cta-section-white {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-section-white h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.cta-section-white p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-section-white .cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.cta-section-white .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-content .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.member-role {
    font-size: 1rem;
    color: #e91e63;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: #ad1457;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-content .cta-button {
    background: white;
    color: #e91e63;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Active nav link */
.nav-links a.active {
    color: #e91e63;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 100px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.contact-form label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #e91e63;
    border-color: #e91e63;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.submit-btn i {
    font-size: 1rem;
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 0 100px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    text-align: center;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e91e63;
}

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

.legal-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-text li:last-child {
    margin-bottom: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #e91e63;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .step-item {
        padding: 20px;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .transcriber-info {
        padding: 60px 0;
    }
    
    .transcriber-info .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .transcriber-info .lead-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .transcriber-info .info-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .transcriber-do {
        padding: 60px 0;
    }
    
    .transcriber-do-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .transcriber-do .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .left-container {
        gap: 25px;
    }
    
    .do-steps {
        gap: 20px;
    }
    
    .do-step {
        padding: 20px;
        gap: 15px;
    }
    
    .do-step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .how-it-works {
        padding: 40px 0;
    }
    
    .how-it-works .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .how-it-works-content {
        gap: 30px;
        margin-top: 30px;
    }
    
    .step-item {
        padding: 15px;
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .transcriber-info {
        padding: 40px 0;
    }
    
    .transcriber-info .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .transcriber-info .lead-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .transcriber-info .info-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .transcriber-do {
        padding: 40px 0;
    }
    
    .transcriber-do-content {
        gap: 30px;
    }
    
    .transcriber-do .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .left-container {
        gap: 20px;
    }
    
    .do-step {
        padding: 15px;
        gap: 12px;
    }
    
    .do-step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .do-step-content h3 {
        font-size: 1.2rem;
    }
    
    .do-step-content p {
        font-size: 0.9rem;
    }
    
    .no-experience {
        padding: 80px 0;
    }
    
    .no-experience-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .no-experience .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .no-experience .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .no-experience .intro-text {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .requirement-item {
        padding: 20px;
        gap: 12px;
    }
    
    .requirement-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .no-experience {
        padding: 60px 0;
    }
    
    .no-experience-content {
        gap: 40px;
    }
    
    .no-experience .section-title {
        font-size: 1.8rem;
    }
    
    .no-experience .intro-text {
        font-size: 1rem;
    }
    
    .requirement-item {
        padding: 15px;
        gap: 10px;
    }
    
    .requirement-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .requirement-item h3 {
        font-size: 1rem;
    }
    
    .cta-container {
        margin-top: 25px;
    }
    
    .cta-button-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .why-choose .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .text-blocks p {
        font-size: 1rem;
        text-align: center;
    }
    
    .demand-growing {
        padding: 60px 0;
    }
    
    .demand-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demand-growing .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .demand-growing .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .demand-growing .text-blocks p {
        font-size: 1rem;
        text-align: center;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section .cta-button-secondary {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-section .cta-button-secondary {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .earnings {
        padding: 60px 0;
    }
    
    .earnings .section-title {
        font-size: 2.2rem;
    }
    
    .earnings .intro-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .earnings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-header {
        padding: 30px 20px 20px;
    }
    
    .level-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .hourly-rate {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .card-content {
        padding: 0 20px 30px;
    }
    
    .earning-item {
        padding: 15px 0;
    }
    
    .hours {
        font-size: 1rem;
    }
    
    .amount {
        font-size: 1.1rem;
    }
    
    .working-hours {
        padding: 60px 0;
    }
    
    .working-hours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .working-hours .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .working-hours .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .working-hours .text-blocks p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .working-hours .cta-container {
        text-align: center;
    }
    
    .working-hours .cta-button-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .professional-training {
        padding: 60px 0;
    }
    
    .professional-training .section-title {
        font-size: 2.2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .training-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .training-img {
        height: 300px;
    }
    
    .faq-container {
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-title {
        font-size: 2.2rem;
    }
    
    .trust-row {
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: 10px;
        left: 15px;
    }
    
    .review-text {
        padding-left: 15px;
    }
    
    .review-author {
        padding-left: 15px;
    }
    
    .application-form {
        padding: 60px 0;
    }
    
    .application-form .section-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .application-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .header {
        padding-top: 10px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        color: #2c2c2c;
        padding: 10px 20px;
    }
    
    .nav-links a:hover {
        color: #e91e63;
        background-color: rgba(233, 30, 99, 0.1);
        border-radius: 25px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
        color: white !important;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    .footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .story-img {
        height: 300px;
    }
    
    .mission-content .section-title,
    .why-content .section-title,
    .team-content .section-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .why-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section-white h2 {
        font-size: 2rem;
    }
    
    .cta-section-white p {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 100px 0 80px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-section {
        padding: 100px 0 80px;
    }
    
    .legal-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
