/* Kitap Tanıtım Sayfası - Yeşil Çevre Teması */
* {
    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: #2c3e50;
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Bölümü - Yumuşak Yeşil Çevre Teması */
.hero-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #3e7b3e 50%, #2d5a3d 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="eco" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><path d="M25 20 Q30 15 35 20 Q30 25 25 20" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="35" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23eco)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.publisher-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.book-cover {
    position: relative;
    text-align: center;
}

.book-placeholder {
    max-width: 300px;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, #2d5a3d 0%, #3e7b3e 50%, #2d5a3d 100%);
}

.book-placeholder:hover {
    transform: scale(1.05) rotateY(5deg);
}

.book-cover-design {
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
}

.book-cover-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="eco-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/><path d="M10 8 Q12 6 14 8 Q12 10 10 8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23eco-pattern)"/></svg>');
    opacity: 0.3;
}

.book-title-cover {
    position: relative;
    z-index: 2;
    text-align: center;
}

.book-title-cover h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f4d03f;
    letter-spacing: 1px;
}

.book-title-cover h2 {
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.book-title-cover p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 30px;
    opacity: 0.9;
}

.book-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.eco-symbol {
    font-size: 2em;
    color: #f4d03f;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.book-author span {
    font-weight: 600;
    font-size: 1em;
}

.book-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.book-image:hover {
    transform: scale(1.05) rotateY(5deg);
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(62, 123, 62, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.book-info {
    text-align: left;
}

.book-title {
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.book-subtitle {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.3;
}

.book-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    color: #f4d03f;
    font-size: 1.2em;
}

.highlight-item span {
    font-weight: 600;
    font-size: 0.9em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2d5a3d 0%, #3e7b3e 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2d5a3d;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 800;
    color: #f4d03f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.stat-label {
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
}

/* Problem Bölümü */
.problem-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header h2 i {
    color: #e74c3c;
    margin-right: 15px;
}

.section-header p {
    font-size: 1.2em;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #e74c3c;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.problem-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.problem-icon i {
    color: white;
    font-size: 2em;
}

.problem-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.problem-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Çözüm Bölümü */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f0e8 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.solution-text h2 i {
    color: #3e7b3e;
    margin-right: 15px;
}

.solution-intro {
    font-size: 1.2em;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.solution-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: #3e7b3e;
    font-size: 1.2em;
    margin-top: 2px;
}

.feature-item span {
    color: #2c3e50;
    line-height: 1.6;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#3e7b3e 0deg 360deg, #e9ecef 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.progress-number {
    font-size: 2.5em;
    font-weight: 800;
    color: #3e7b3e;
    display: block;
}

.progress-label {
    font-size: 0.9em;
    color: #6c757d;
    font-weight: 600;
}

/* Faydalar Bölümü */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 5px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3e7b3e 0%, #2d5a3d 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(62, 123, 62, 0.3);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #3e7b3e;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 2.5em;
    color: #3e7b3e;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Hedef Kitle */
.target-audience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f0e8 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #4a7c59;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.audience-icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5d8a6b 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon i {
    color: white;
    font-size: 1.8em;
}

.audience-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.audience-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* İçerik Özeti */
.content-overview-section {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.content-item {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #f39c12;
}

.content-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.content-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.content-icon i {
    color: white;
    font-size: 1.5em;
}

.content-item h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.content-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Satın Alma Bölümü */
.purchase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a3d 0%, #3e7b3e 100%);
    color: white;
}

.purchase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.purchase-info h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
}

.purchase-info h2 i {
    color: #f4d03f;
    margin-right: 15px;
}

.purchase-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.price-info {
    margin-bottom: 40px;
}

.price-tag {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.price-amount {
    font-size: 3em;
    font-weight: 800;
    color: #f4d03f;
    display: block;
}

.price-note {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 5px;
}

.special-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 208, 63, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #f4d03f;
}

.special-offer i {
    color: #f4d03f;
    font-size: 1.2em;
}

.special-offer span {
    font-weight: 600;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.additional-links {
    text-align: center;
}

.link-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f4d03f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-item:hover {
    color: white;
    transform: translateX(5px);
}

.purchase-visual {
    text-align: center;
}

.guarantee-badge {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.guarantee-badge i {
    font-size: 3em;
    color: #f4d03f;
    margin-bottom: 15px;
}

.badge-content {
    text-align: center;
}

.badge-title {
    font-size: 1.2em;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 1em;
    opacity: 0.9;
}

.features-list {
    display: grid;
    gap: 15px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-check i {
    color: #f4d03f;
    font-size: 1.2em;
}

.feature-check span {
    font-weight: 500;
}

/* Hızlı İletişim Bölümü */
.quick-contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #3e7b3e;
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3,
.quick-order h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info h3 i,
.quick-order h3 i {
    color: #3e7b3e;
    margin-right: 10px;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: #3e7b3e;
}

.contact-method i {
    color: #3e7b3e;
    font-size: 1.2em;
    width: 20px;
    text-align: center;
}

.contact-method span {
    font-weight: 500;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-order .btn {
    justify-content: center;
    width: 100%;
}

/* Footer */
.footer-section {
    background: #1a252f;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-logo p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3e7b3e;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: #3e7b3e;
    width: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3e7b3e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .book-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .book-info {
        text-align: center;
    }
    
    .book-title {
        font-size: 2.2em;
    }
    
    .book-subtitle {
        font-size: 1.2em;
    }
    
    .book-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .problem-grid,
    .benefits-grid,
    .audience-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content,
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-buttons {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .tab-btn {
        border-radius: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .purchase-buttons {
        align-items: center;
    }
    
    .book-placeholder {
        max-width: 250px;
        height: 350px;
    }
    
    .book-title-cover h2 {
        font-size: 1.5em;
    }
    
    .book-title-cover h3 {
        font-size: 1em;
    }
    
    .book-title-cover p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .book-title {
        font-size: 1.8em;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    .problem-card,
    .benefit-card,
    .audience-card {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    .book-placeholder {
        max-width: 200px;
        height: 300px;
    }
    
    .book-title-cover {
        padding: 20px 15px;
    }
    
    .book-title-cover h2 {
        font-size: 1.3em;
    }
    
    .book-title-cover h3 {
        font-size: 0.9em;
    }
    
    .book-title-cover p {
        font-size: 0.75em;
        margin-bottom: 20px;
    }
    
    .highlight-item {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .stat-label {
        font-size: 0.8em;
    }
}

/* Sıfır Atık Teması İkonları - Yumuşak Renkler */
.eco-icon {
    color: #3e7b3e;
}

.recycle-icon {
    color: #4a7c59;
}

.leaf-icon {
    color: #5d8a6b;
}

.earth-icon {
    color: #d4a574;
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card,
.benefit-card,
.audience-card,
.content-item {
    animation: slideInUp 0.6s ease-out;
}

/* Scroll davranışı */
html {
    scroll-behavior: smooth;
}

/* Print Stilleri */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        display: none !important;
    }
    
    .footer-section {
        background: white !important;
        color: black !important;
    }
}