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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin: 0.25rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu .btn {
    margin: 0.5rem 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.features {
    padding: 6rem 0;
    background: #f9fafb;
}

.how-it-works {
    padding: 6rem 0;
    background: white;
}

.testimonials {
    padding: 6rem 0;
    background: #f9fafb;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.pricing {
    padding: 6rem 0;
    background: #f9fafb;
}

.contact {
    padding: 6rem 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-category {
    margin-bottom: 6rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #667eea;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #718096;
}

.feature-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pricing specific styles */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #718096;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.price-description {
    color: #718096;
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #718096;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
    padding: 4rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4a5568;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.price-period {
    font-size: 1rem;
    color: #718096;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #718096;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid #a7f3d0;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

/* Authentication Styles */
.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #718096;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Profile Page Styles */
.profile-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-header h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.info-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.info-group:last-child {
    border-bottom: none;
}

.info-group label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    min-width: 150px;
}

.info-group span {
    color: #666;
    font-size: 1rem;
    text-align: right;
    flex: 1;
    margin-left: 20px;
}

.text-muted {
    color: #999 !important;
    font-style: italic;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.profile-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.profile-error {
    text-align: center;
    padding: 40px;
}

.profile-error p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Edit Form Styles */
.edit-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid #e9ecef;
}

.edit-form h4 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.edit-form .form-group {
    margin-bottom: 20px;
}

.edit-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.edit-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.edit-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* Messages */
.messages {
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Payment Info Styles */
.payment-info {
    background: #f8f9fa;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.payment-info h3 {
    color: #e67e22;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.payment-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.bank-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.bank-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.bank-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.bank-info strong {
    color: #2c3e50;
}

.payment-steps {
    background: #e8f4fd;
    border: 1px solid #3498db;
    border-radius: 10px;
    padding: 1.5rem;
}

.payment-steps h4 {
    color: #2980b9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-steps ol {
    margin-left: 1rem;
}

.payment-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.payment-steps strong {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .payment-info h3 {
        font-size: 1.2rem;
    }
    
    .bank-info {
        padding: 1rem;
    }
    
    .payment-steps {
        padding: 1rem;
    }
    
    .profile-card {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .profile-header h2 {
        font-size: 2rem;
    }
    
    .info-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-group label {
        min-width: auto;
    }
    
    .info-group span {
        text-align: left;
        margin-left: 0;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .edit-form {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Ana aksiyon butonu için özel stil */
.main-action-btn {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 0;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.10);
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.main-action-btn:active {
    background: #5a67d8;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Extra small devices (600px ve altı) */
@media (max-width: 600px) {
    .auth-card, .profile-card, .contact-form, .contact-info {
        padding: 1rem;
    }
    .main-action-btn {
        font-size: 1rem;
        padding: 0.85rem 0;
    }
    
    /* Payment info extra kompakt */
    .payment-info {
        padding: 0.75rem;
        margin: 0.75rem 0;
        border-radius: 10px;
    }
    
    .payment-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .payment-container {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .bank-info {
        padding: 0.6rem;
        border-radius: 6px;
    }
    
    .bank-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .bank-info p {
        font-size: 0.8rem;
        margin: 0.25rem 0;
        line-height: 1.3;
    }
    
    .bank-info p:last-child {
        padding: 0.4rem;
        font-size: 0.75rem;
        margin-top: 0.4rem;
    }
    
    .payment-steps {
        padding: 0.75rem;
    }
    
    .payment-steps h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .payment-steps ol li {
        padding-left: 1.8rem;
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .payment-steps ol li::before {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .payment-steps ol li strong {
        font-size: 0.75rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Modern ana buton */
.btn-main {
    display: inline-block;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(102,126,234,0.08);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    margin: 8px 8px 8px 0;
}
.btn-main:hover, .btn-main:focus {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 24px rgba(102,126,234,0.18);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
}

/* İkincil buton */
.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #764ba2;
    border: 2px solid #764ba2;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s, border 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    margin: 8px 8px 8px 0;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #764ba2;
    color: #fff;
    border-color: #764ba2;
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
} 

/* Payment Info Styles - Completely Responsive */
.payment-info {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.payment-info h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.3;
}

.payment-info h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Payment Container - Always Responsive */
.payment-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bank-info {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #10b981;
    width: 100%;
    box-sizing: border-box;
}

.bank-info h4 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.bank-info p {
    margin: 0.4rem 0;
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bank-info p strong {
    color: #2d3748;
    font-weight: 600;
    display: inline-block;
}

.bank-info p:last-child {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 0.6rem;
    margin-top: 0.75rem;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.85rem;
}



/* Payment Steps - Fully Responsive */
.payment-steps {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e0f2fe;
}

.payment-steps h4 {
    color: #0369a1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.payment-steps ol {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.payment-steps ol li {
    counter-increment: step-counter;
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    color: #374151;
    line-height: 1.5;
    font-size: 0.9rem;
}

.payment-steps ol li:last-child {
    margin-bottom: 0;
}

.payment-steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1;
}

.payment-steps ol li strong {
    color: #dc2626;
    background: #fef2f2;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.2rem;
}

/* Tablet/Desktop view (768px+) - Improved layout */
@media (min-width: 768px) {
    .payment-info {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .payment-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .payment-container {
        gap: 1.5rem;
    }
    
    .bank-info {
        padding: 1.25rem;
    }
    
    .payment-steps {
        padding: 1.5rem;
    }
    
    .payment-steps ol li {
        padding-left: 3rem;
        font-size: 1rem;
    }
    
    .payment-steps ol li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* Mobile view (767px ve altı) - Optimized */
@media (max-width: 767px) {
    .payment-info {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .payment-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .payment-container {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .bank-info {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .bank-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .bank-info p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
        line-height: 1.4;
    }
    
    .bank-info p:last-child {
        padding: 0.5rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .payment-steps {
        padding: 1rem;
    }
    
    .payment-steps h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .payment-steps ol li {
        padding-left: 2rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .payment-steps ol li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .payment-steps ol li strong {
        font-size: 0.8rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #667eea;
}

.legal-section h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h4 {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.legal-section h5 {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-section ul li::marker {
    color: #667eea;
}

.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ol li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-section strong {
    color: #2d3748;
    font-weight: 600;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Cookie Table Styles */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f8fafc;
}

/* Consent Declaration Box */
.consent-declaration {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.consent-declaration p {
    color: #047857;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.consent-declaration p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: #065f46;
}

/* Contact Info Box */
.contact-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #10b981;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #10b981;
    font-weight: 600;
}

.contact-info a:hover {
    color: #059669;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .legal-section h4 {
        font-size: 1.1rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .consent-declaration {
        padding: 1.5rem;
    }
}