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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    color: #f39c12;
    font-size: 2.8rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
    font-weight: 300;
}

/* Search Container */
.search-container {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.2);
}

.search-box i {
    position: absolute;
    right: 20px;
    color: #666;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.welcome-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.section-title i {
    color: #3498db;
}

/* Welcome Card */
.welcome-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.welcome-card h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.welcome-card h2 i {
    color: #3498db;
    font-size: 2.8rem;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.info-item i {
    color: #3498db;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3498db;
}

.timeline-item {
    position: relative;
    background: #f8f9fa;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 20px;
    width: 15px;
    height: 15px;
    background: #3498db;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3498db;
}

.timeline-item.critical::before {
    background: #e74c3c;
    box-shadow: 0 0 0 3px #e74c3c;
}

.timeline-date {
    background: #3498db;
    color: white;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-item.critical .timeline-date {
    background: #e74c3c;
}

.timeline-content {
    padding: 25px;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning i {
    color: #f39c12;
    font-size: 1.2rem;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.document-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid #3498db;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.document-card.optional {
    border-top-color: #95a5a6;
    opacity: 0.8;
}

.document-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.document-card.optional .document-number {
    background: #95a5a6;
}

.document-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.document-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.source {
    display: inline-block;
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.download-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Important Note */
.important-note {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
}

.important-note i {
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.important-note h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Scholarship Section Styles */
.scholarship-intro {
    margin-bottom: 30px;
}

.intro-card {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.intro-card i {
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.intro-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.intro-content p {
    line-height: 1.6;
    margin: 0;
}

.regulation-info {
    margin-bottom: 30px;
}

.regulation-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 5px solid #e74c3c;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.regulation-icon {
    background: #e74c3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.regulation-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.regulation-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box i {
    color: #f39c12;
    font-size: 1.2rem;
}

.highlight-box span {
    color: #856404;
    font-weight: 500;
}

.decision-timing {
    margin-bottom: 30px;
}

.timing-card {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-left: 5px solid #27ae60;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.timing-card i {
    color: #27ae60;
    font-size: 1.5rem;
}

.timing-card h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timing-card p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-box i {
    color: #f39c12;
    font-size: 1.5rem;
}

.warning-box p {
    color: #856404;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.option-description {
    margin-bottom: 20px;
}

.option-description p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.critical-info {
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.critical-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.critical-header i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.critical-header h4 {
    color: #c0392b;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.critical-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.critical-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #721c24;
    line-height: 1.5;
}

.critical-points i {
    color: #e74c3c;
    margin-top: 3px;
    flex-shrink: 0;
}

.fee-info {
    margin-bottom: 25px;
}

.fee-source {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 5px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.fee-source i {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 5px;
}

.fee-source h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.fee-source p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.current-fee {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
}

.current-fee span {
    color: #27ae60;
    font-weight: 600;
}

.payment-schedule h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-schedule h4 i {
    color: #3498db;
}

.payment-info {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-table {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row.header {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.payment-row.variable {
    background: #fff3cd;
}

.taksit-no {
    font-weight: 600;
    color: #2c3e50;
}

.amount {
    font-weight: 600;
    color: #27ae60;
    text-align: right;
}

.payment-row.variable .amount {
    color: #f39c12;
}

.important-financial-warning {
    background: #ffe6e6;
    border: 2px solid #ffcccc;
    border-radius: 8px;
    padding: 20px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.warning-header i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.warning-header h4 {
    color: #c0392b;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.important-financial-warning p {
    color: #721c24;
    line-height: 1.6;
    margin-bottom: 15px;
}

.warning-highlight {
    background: #ffb3b3;
    border: 1px solid #ff9999;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-highlight i {
    color: #c0392b;
    font-size: 1.1rem;
}

.warning-highlight span {
    color: #721c24;
    font-weight: 600;
}

.option-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.option-header {
    padding: 25px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-1 {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.option-2 {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.option-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
}

.option-content {
    padding: 25px;
    background: white;
}

.option-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.option-features {
    list-style: none;
    margin-bottom: 20px;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
}

.option-features i {
    width: 20px;
    color: #27ae60;
}

.option-features i.fa-exclamation-triangle,
.option-features i.fa-ban,
.option-features i.fa-clock {
    color: #f39c12;
}

.payment-schedule {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.payment-schedule h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

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

.payment-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Form Guide Section - EK-1 */
.form-purpose {
    margin-bottom: 30px;
}

.purpose-card {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.purpose-card i {
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.purpose-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.purpose-content p {
    line-height: 1.6;
    margin: 0;
}

.income-requirement {
    margin-bottom: 30px;
}

.requirement-card {
    background: #f8f9fa;
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.requirement-icon {
    background: #27ae60;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.requirement-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.requirement-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.income-limit-amount {
    background: #e8f5e8;
    color: #27ae60;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.form-steps .step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.form-steps .step-number {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form-steps .step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    border: 1px solid #e9ecef;
}

.form-steps .step-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.step-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.employment-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.employment-type {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.employment-type:hover {
    background: white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.employment-type.additional-income {
    border-left-color: #f39c12;
}

.employment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.employment-header i {
    color: #3498db;
    font-size: 1.3rem;
    width: 25px;
}

.employment-type.additional-income .employment-header i {
    color: #f39c12;
}

.employment-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.employment-type p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 37px;
}

.family-determination {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.determination-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #27ae60;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.determination-item.exclusion {
    border-left-color: #e74c3c;
    background: #fff5f5;
    border-color: #fecaca;
}

.determination-item i {
    color: #27ae60;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.determination-item.exclusion i {
    color: #e74c3c;
}

.determination-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

.approval-process {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approval-requirement {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.approval-requirement i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.approval-requirement p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
}

.approval-options {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

.approval-options h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.approval-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.approval-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}

.approval-list i {
    color: #3498db;
    font-size: 1.1rem;
    width: 20px;
}

.paid-boarding-note {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.note-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.note-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Evaluation Process */
.evaluation-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.process-step {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
    background: #3498db;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.5;
}

.contracts-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contracts-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contracts-info h3 i {
    color: #3498db;
}

.contracts-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.contracts-info ul li {
    margin-bottom: 8px;
    color: #555;
}

.preview-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.preview-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details p a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.footer-section p a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #74b9ff;
    text-decoration: underline;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #3498db;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 20px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
        line-height: 1.3;
    }
    
    .page-header h1 i {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Search Container Mobile */
    .search-container {
        padding: 15px 0;
    }
    
    .search-box {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .search-box input {
        padding: 12px 45px 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Main Content Mobile */
    .main-content {
        padding: 20px 0;
    }
    
    .content-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .welcome-section {
        margin-bottom: 30px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .section-title i {
        font-size: 1.8rem;
    }
    
    /* Welcome Card Mobile */
    .welcome-card {
        padding: 20px 15px;
        text-align: left;
    }
    
    .welcome-card h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .welcome-card h2 i {
        font-size: 2rem;
    }
    
    .welcome-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Quick Info Mobile */
    .quick-info {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    
    .info-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .info-item i {
        font-size: 1.5rem;
    }
    
    /* Timeline Mobile */
    .timeline {
        padding-left: 15px;
    }
    
    .timeline::before {
        left: 7px;
        width: 2px;
    }
    
    .timeline-item::before {
        left: -19px;
        width: 12px;
        height: 12px;
        top: 15px;
    }
    
    .timeline-date {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .warning {
        padding: 12px;
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    /* Documents Grid Mobile */
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .document-card {
        padding: 15px;
        text-align: center;
    }
    
    .document-number {
        top: -12px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .document-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .document-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Important Note Mobile */
    .important-note {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .important-note h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    /* Scholarship Options Mobile */
    .scholarship-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-card {
        margin: 0;
    }
    
    .option-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .option-header h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .option-content {
        padding: 15px;
    }
    
    .option-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .option-features li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .payment-schedule {
        padding: 15px;
        margin-top: 10px;
    }
    
    .payment-schedule h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .payment-table {
        margin-bottom: 15px;
    }
    
    .payment-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 10px;
        text-align: center;
    }
    
    .payment-row.header {
        display: none; /* Hide table header on mobile */
    }
    
    .payment-item {
        background: white;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 8px;
        border: 1px solid #e9ecef;
    }
    
    /* New Scholarship Section Mobile Styles */
    .scholarship-intro,
    .regulation-info,
    .decision-timing {
        margin-bottom: 20px;
    }
    
    .intro-card,
    .regulation-card,
    .timing-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .regulation-icon,
    .requirement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .critical-info {
        padding: 15px;
        margin-top: 15px;
    }
    
    .critical-points li {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 0;
    }
    
    .fee-source {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .important-financial-warning {
        padding: 15px;
    }
    
    /* Form Guide Mobile */
    .form-steps .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-steps .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        align-self: center;
    }
    
    .form-steps .step-content {
        padding: 15px;
    }
    
    .form-steps .step-content h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .employment-types {
        gap: 15px;
    }
    
    .employment-type {
        padding: 15px;
    }
    
    .employment-type:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .employment-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .employment-type p {
        padding-left: 0;
        text-align: center;
    }
    
    .family-determination {
        gap: 15px;
    }
    
    .determination-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .approval-process {
        gap: 15px;
    }
    
    .approval-requirement {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .approval-options {
        padding: 15px;
    }
    
    .approval-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .approval-list li {
        justify-content: center;
    }
    
    .paid-boarding-note {
        padding: 15px;
    }
    
    .note-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .note-header h4 {
        font-size: 1.1rem;
    }
    
    /* Evaluation Process Mobile */
    .evaluation-process {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .contracts-info {
        padding: 15px;
    }
    
    .contracts-info h3 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contracts-info ul {
        padding-left: 15px;
    }
    
    .contracts-info ul li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
    
    .preview-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        margin: 10px 0;
    }
    
    /* Contact Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .contact-details span {
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
    }
    
    /* Buttons Mobile */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Additional Mobile Improvements */
    .purpose-card,
    .requirement-card,
    .income-requirement {
        margin-bottom: 20px;
    }
    
    .purpose-card,
    .requirement-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .income-limit-amount {
        display: block;
        margin-top: 5px;
        padding: 5px 10px;
        font-size: 1.1rem;
    }
    
    /* Step Description Mobile */
    .step-description {
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
    
    .page-header h1 i {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .welcome-card h2 {
        font-size: 1.4rem;
    }
    
    .welcome-text {
        font-size: 0.95rem;
    }
    
    .content-section {
        padding: 15px 10px;
    }
    
    .document-card,
    .option-card,
    .contact-card,
    .process-step {
        padding: 15px 10px;
    }
    
    .timeline-content,
    .step-content,
    .contracts-info {
        padding: 12px;
    }
    
    .employment-type,
    .determination-item,
    .approval-requirement {
        padding: 12px;
    }
    
    .search-box input {
        padding: 10px 40px 10px 12px;
        font-size: 16px;
    }
    
    .download-btn,
    .preview-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .payment-row {
        padding: 8px;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer-section {
        margin-bottom: 15px;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .page-header {
        padding: 15px 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
        flex-direction: row;
        gap: 15px;
    }
    
    .welcome-card h2 {
        flex-direction: row;
        gap: 15px;
    }
    
    .main-content {
        padding: 15px 0;
    }
    
    .content-section {
        margin-bottom: 25px;
    }
    
    .quick-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .info-item {
        flex-direction: row;
        gap: 8px;
    }
}

/* Print Styles */
@media print {
    .search-container,
    .back-to-top,
    .download-btn,
    .preview-btn {
        display: none !important;
    }
    
    .page-header {
        background: #2c3e50 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .content-section {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .timeline-item,
    .document-card,
    .option-card,
    .contact-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}