* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --secondary-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gold-color: #FFD700;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: #fafafa;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.main-header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.logo-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-ajans {
    color: var(--dark-text);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
}

.main-nav a:hover {
    color: #f5576c;
    background: #fef2f2;
}

.main-nav a.active:not(.btn-giris) {
    color: #f5576c;
    background: #fef2f2;
}

.btn-giris {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
    transition: all 0.3s ease !important;
}

.btn-giris:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* ========== HERO SECTION ========== */
.hero {
    background: url('banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: white;
    color: #f5576c;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--light-text);
    font-size: 16px;
    font-weight: 500;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header p {
    color: var(--light-text);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.partners-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: thin;
    scrollbar-color: #f5576c #f0f0f0;
}

.partners-grid::-webkit-scrollbar {
    height: 8px;
}

.partners-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.partners-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
}

.partners-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.partner-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    flex: 0 0 300px;
    min-width: 300px;
    animation: slideInUp 0.6s ease-out backwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }
.partner-card:nth-child(6) { animation-delay: 0.6s; }

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: #f5576c;
}

.partner-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.partner-info {
    padding: 24px;
    text-align: center;
}

.partner-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.partner-age {
    color: var(--light-text);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.partner-age::before {
    content: '📍';
    font-size: 14px;
}

/* ========== DOCUMENTS SECTION ========== */
.documents-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.documents-header {
    text-align: center;
    margin-bottom: 60px;
}

.documents-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.documents-header .text-dark {
    color: var(--dark-text);
}

.documents-header .text-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.documents-header p {
    color: var(--light-text);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.document-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.document-card:nth-child(1) { animation-delay: 0.1s; }
.document-card:nth-child(2) { animation-delay: 0.2s; }
.document-card:nth-child(3) { animation-delay: 0.3s; }

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.document-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.document-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.document-card:hover .document-image img {
    transform: scale(1.05);
}

.document-info {
    padding: 28px 24px;
    text-align: center;
    background: white;
}

.document-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.document-info p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
}

/* ========== CARDS ========== */
.section-padding {
    padding: 80px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--light-text);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #f5576c;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--dark-text);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
}

/* ========== FORMS ========== */
.form-container {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f5576c;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--light-text);
    font-size: 13px;
}

/* ========== ALERTS ========== */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert::before {
    font-size: 20px;
}

.alert-success::before {
    content: '✓';
}

.alert-error::before {
    content: '✕';
}

/* ========== FAQ ========== */
.faq-item {
    background: white;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: #f5576c;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--light-text);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    line-height: 1.7;
}

/* ========== COMMENTS ========== */
.comment-box {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.comment-box:hover {
    box-shadow: var(--shadow-lg);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 16px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-info h4 {
    color: var(--dark-text);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 16px;
}

.comment-date {
    color: var(--light-text);
    font-size: 14px;
}

.comment-text {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
}

.rating {
    color: #fbbf24;
    margin-top: 8px;
    font-size: 18px;
}

/* ========== DASHBOARD ========== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 20px 24px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body {
    padding: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 14px;
    min-width: 120px;
}

.info-row .value {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 15px;
    text-align: right;
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-info {
    margin-top: 16px;
    padding: 16px;
    border-radius: 10px;
    line-height: 1.6;
}

.status-info p {
    margin: 0;
    font-size: 14px;
}

.status-info-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-info-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-info-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== CONTENT SECTION ========== */
.content-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.content-section h2 {
    color: var(--dark-text);
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
}

.content-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

/* ========== STEPS ========== */
.steps-container {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

.step-content h3 {
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.step-content p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 60px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .documents-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }

    .main-nav a {
        display: block;
        padding: 12px 16px;
    }

    .hero {
        min-height: 400px;
        padding: 60px 0;
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .partners-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .partners-grid {
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0 -16px;
    }

    .partner-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .partner-image {
        height: 300px;
    }

    .documents-section {
        padding: 60px 0;
    }

    .documents-header h2 {
        font-size: 36px;
    }

    .documents-header p {
        font-size: 16px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .document-image {
        height: 350px;
        padding: 15px;
    }

    .form-container {
        padding: 28px 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .content-section {
        padding: 24px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-row {
        flex-direction: column;
        gap: 8px;
    }

    .info-row .label {
        min-width: auto;
    }

    .info-row .value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .partners-grid {
        gap: 12px;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0 -12px;
    }

    .partner-card {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .partner-image {
        height: 320px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
