* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #f5f5f5;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 10px 20px;
    border-bottom: 2px solid #c9a961;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    text-align: left;
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
}

.logo {
    font-size: 64px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 6px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    display: block;
}

.logo-bc {
    border: 3px solid #c9a961;
    padding: 8px 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    position: relative;
}

.logo-bc::before {
    content: '🌿';
    position: absolute;
    left: -15px;
    font-size: 24px;
}

.logo-bc::after {
    content: '🌿';
    position: absolute;
    right: -15px;
    font-size: 24px;
    transform: scaleX(-1);
}

.logo-text {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 4px;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0;
}

nav {
    text-align: right;
    margin-top: 0;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a961, #d4b574);
    transition: width 0.3s;
}

nav a:hover {
    color: #c9a961;
}

nav a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 3px solid #c9a961;
}

.hero h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(201, 169, 97, 0.6);
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 181, 116, 0.6);
}

.section {
    border-bottom: 1px solid #333;
    margin-top: 20px;
}

.section h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
    font-weight: 700;
}

.section h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #333;
    transition: all 0.3s;
    text-align: center;
}

.card:hover {
    border-color: #c9a961;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    transition: transform 0.6s;
}

.card:hover .icon {
    transform: rotate(360deg) scale(1.1);
}

.card h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.content-area {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    margin: 10px 0;
    border: 2px solid #333;
}

.content-area p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.content-area a {
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.content-area a:hover {
    color: #d4b574;
}

.content-area ul {
    color: #ccc;
    margin-left: 20px;
    line-height: 2;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #c9a961;
}

.stat-number {
    font-size: 42px;
    color: #d4b574;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #c9a961;
    margin-top: 20px;
}

footer p {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.footer-links a {
    color: #c9a961;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #d4b574;
}

.trust-badge {
    display: inline-block;
    background: #1a1a1a;
    padding: 15px 30px;
    border-radius: 5px;
    border: 1px solid #c9a961;
    margin-top: 20px;
    color: #d4b574;
    font-size: 13px;
}

.banner-section {
    padding: 0 0 20px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 3px solid #c9a961;
}

.banner-section h2 {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
    font-weight: 700;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

.banner-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 0;
    border-radius: 15px;
    border: 2px solid #c9a961;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(201, 169, 97, 0.2);
    overflow: hidden;
    min-height: 140px;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 181, 116, 0.1), transparent);
    transition: left 0.5s;
}

.banner-card:hover::before {
    left: 100%;
}

.banner-card:hover {
    transform: translateX(10px);
    border-color: #d4b574;
    box-shadow: 0 8px 35px rgba(212, 181, 116, 0.4);
}

.banner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4b574 0%, #c9a961 100%);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.banner-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    margin-left: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    transition: transform 0.6s;
    flex-shrink: 0;
}

.banner-card:hover .banner-icon {
    transform: rotate(360deg) scale(1.1);
}

.banner-content {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.banner-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.banner-card p {
    color: #c9a961;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-button {
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.banner-card:hover .banner-button {
    box-shadow: 0 6px 25px rgba(212, 181, 116, 0.6);
    transform: scale(1.05);
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #c9a961;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #c9a961;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: bold;
    color: #c9a961;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #1a1a1a;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content a {
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-answer-content a:hover {
    color: #d4b574;
}

/* Inline style replacements */
.text-center {
    text-align: center;
}

.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.color-ccc {
    color: #ccc;
}

.inline-block {
    display: inline-block;
}

.gradient-button {
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 100%);
    color: #000 !important;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.gradient-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 181, 116, 0.6);
    color: #000 !important;
}

/* Buton container için responsive */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .gradient-button {
        padding: 15px 25px;
        font-size: 16px;
        margin: 8px 5px;
        width: calc(100% - 10px);
        max-width: 300px;
        display: block;
        text-align: center;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.margin-top-30 {
    margin-top: 30px;
}

.font-size-14 {
    font-size: 14px;
}

.color-888 {
    color: #888;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-20 {
    margin-top: 20px;
}

/* Image lazy loading */
img {
    loading: lazy;
}

/* Font optimization */
@font-face {
    font-family: 'Segoe UI';
    font-display: swap;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce layout shift */
.logo-container,
.hero,
.section {
    contain: layout;
}

/* Hero banner - moved from inline */
.hero-banner {
    width: 100%;
    display: block;
    border-bottom: 3px solid #c9a961;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer disclaimer - moved from inline */
.footer-disclaimer {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ intro centered */
.faq-intro {
    text-align: center;
}

/* Email protection link */
.mail-protect {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo-image {
        margin: 0 auto;
    }
    
    nav {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    nav a {
        margin: 0 5px;
        font-size: 12px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 18px;
        padding: 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .gradient-button {
        padding: 15px 25px;
        font-size: 16px;
        margin: 8px 5px;
        width: calc(100% - 10px);
        max-width: 300px;
        display: block;
        text-align: center;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .content-area {
        padding: 25px 20px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-card {
        min-height: 120px;
    }
    
    .banner-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

