* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #1c1c1c;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    background: #ff4500;
    color: #fff;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.hero-box ul {
    list-style: none;
}

.section {
    padding: 70px 0;
}

.light {
    background: #f9f9f9;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

.grid-3, .grid-4 {
    display: grid;
    gap: 25px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card, .step {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.price-card.featured {
    border: 2px solid #ff4500;
}

.price {
    font-size: 36px;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    color: #666;
}

.price-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.btn-secondary {
    background: #333;
}

.btn-outline {
    border: 2px solid #ff4500;
    padding: 8px 20px;
    color: #ff4500;
}

.cta {
    background: #ff4500;
    color: #fff;
    padding: 60px 0;
}

.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

.faq-section {
    max-width: 900px;
    margin: auto;
}

.faq-cover {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-cover:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.faq-cover summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    background: #fff;
}

.faq-cover summary::-webkit-details-marker {
    display: none;
}

.faq-cover summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 22px;
    color: #ff4500;
    transition: transform 0.3s ease;
}

.faq-cover[open] summary::after {
    content: "–";
}

.faq-cover p {
    padding: 0 24px 22px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .faq-cover summary {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-cover p {
        padding: 0 20px 20px;
    }
}


.keyword-form {
    max-width: 600px;
    margin: auto;
}

.brand-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.brand-form input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.brand-form button {
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {
    .brand-form {
        flex-direction: column;
    }
}


.paypal-btn {
    background: #ffc439;
    color: #111;
    font-weight: 600;
    margin-top: 15px;
}

.paypal-btn:hover {
    background: #ffb347;
}
