/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #e74c3c;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigasyon */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.nav-logo img {
    height: 40px;
    margin-right: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e74c3c;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3));
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.info-item img {
    width: 24px;
    height: 24px;
}

.hero-buttons {
    margin-top: 40px;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.update-date {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Bölümler */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Hakkında Bölümü */
.about-event {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Özellikler */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Program */
.schedule {
    padding: 100px 0;
    background: white;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
}

.tab {
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.tab.active {
    background: #e74c3c;
    color: white;
}

.schedule-content {
    position: relative;
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.schedule-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: #ecf0f1;
    transform: translateX(10px);
}

.time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    min-width: 150px;
}

.event-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.event-info p {
    color: #666;
    line-height: 1.6;
}

/* Galeri */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Sponsorlar */
.sponsors {
    padding: 80px 0;
    background: white;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.sponsors-grid img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sponsors-grid img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    margin-bottom: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .col-md-6,
    .col-md-4,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-tabs {
        flex-direction: column;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .time {
        min-width: auto;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Sim Racing Sayfası */
.what-is-simracing {
    padding: 100px 0;
    background: white;
}

.features-list {
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.hardware {
    padding: 100px 0;
    background: #f8f9fa;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hardware-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hardware-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hardware-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hardware-content {
    padding: 25px;
}

.hardware-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.hardware-content h4 {
    font-size: 1.1rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.hardware-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.hardware-content li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.hardware-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Kayıt Sayfası */
.registration-info {
    padding: 50px 0;
    background: white;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.info-box h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.countdown-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.time-unit {
    text-align: center;
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.registration-form {
    padding: 50px 0 100px;
    background: #f8f9fa;
}

.registration-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.checkbox-label input {
    margin-right: 10px;
    width: auto;
}

.category-selection {
    display: grid;
    gap: 20px;
}

.category-option {
    position: relative;
}

.category-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.category-label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-option input[type="radio"]:checked + .category-label {
    border-color: #e74c3c;
    background: #fef9f9;
}

.category-label img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.category-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.category-info p {
    color: #666;
    margin-bottom: 8px;
}

.difficulty {
    display: inline-block;
    padding: 4px 12px;
    background: #e74c3c;
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.discount-label {
    display: block;
    margin-top: 10px;
    color: #e74c3c;
    font-weight: 600;
}

.terms-conditions {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.registration-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.sidebar-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    border-top: 2px solid #e74c3c;
    margin-top: 15px;
}

.total-price {
    color: #e74c3c;
    font-size: 1.3rem;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    padding: 8px 0;
    color: #666;
}

/* İletişim Sayfası */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-sidebar {
    position: sticky;
    top: 100px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.social-media {
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e74c3c;
}

.social-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: 0;
}

.map-info {
    margin-top: 40px;
}

.transportation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.transport-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.transport-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.transport-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.transport-item p {
    color: #666;
    font-size: 0.9rem;
}

.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-info span {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.member-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-contact a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.member-contact a:hover {
    color: #e74c3c;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #ecf0f1;
}

.faq-question h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gizlilik ve Şartlar Sayfaları */
.privacy-content,
.terms-content {
    padding: 50px 0 100px;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.content-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.content-section h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.content-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.important-note,
.info-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #fdcb6e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.important-note h3 {
    color: #b8860b;
    margin-bottom: 10px;
}

.important-note p {
    color: #8b6914;
    margin: 0;
}

.definitions,
.data-categories {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.definition-item,
.data-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.definition-item h4,
.data-category h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.definition-item p,
.data-category p {
    color: #666;
    margin: 0;
}

.collection-methods,
.usage-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.method-item,
.purpose-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.method-item h4,
.purpose-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.sharing-scenarios,
.security-measures {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.scenario,
.measure {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.scenario h4,
.measure h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.retention-periods,
.rights-list {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.retention-item,
.right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.retention-item h4,
.right-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.cookie-types {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #9b59b6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-method {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-method h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

.complaint-authorities {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.authority {
    background: #fef0f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.authority h4 {
    color: #c0392b;
    margin-bottom: 10px;
}

.final-contact {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 25px 0;
}

.acceptance-section {
    background: #e8f5e8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid #27ae60;
}

.acceptance-section h2 {
    color: #27ae60;
    margin-bottom: 15px;
}

.acceptance-info {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.acceptance-info p {
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0;
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
}

/* Responsive Tasarım İyileştirmeleri */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .hardware-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .category-label {
        flex-direction: column;
        text-align: center;
    }
    
    .category-label img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .registration-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .contact-methods,
    .transportation-options {
        grid-template-columns: 1fr;
    }
    
    .acceptance-info {
        flex-direction: column;
        align-items: center;
    }
    
    .participation-requirements h3 {
        font-size: 1.2rem;
    }
    
    .collection-methods,
    .usage-purposes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .registration-form-container,
    .contact-form-container {
        padding: 25px;
    }
    
    .sidebar-box {
        padding: 20px;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .method-item,
    .purpose-item,
    .contact-method {
        padding: 15px;
    }
}