* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #da7c14 0%, #f5a742 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

main {
    padding: 40px 30px;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 1.8rem;
    color: #da7c14;
    margin-bottom: 25px;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: #da7c14;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    margin-top: 8px;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #da7c14;
}

.faq-item h3 {
    margin-top: 0;
    color: #da7c14;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    margin-bottom: 10px;
}

.faq-item ul {
    margin-left: 20px;
    margin-top: 10px;
    color: #555;
}

.faq-item li {
    margin-bottom: 8px;
}

.faq-item a {
    color: #da7c14;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Troubleshooting Section */
.troubleshooting-section {
    background: #fff8f0;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffe4b5;
}

.troubleshooting-item {
    margin-bottom: 25px;
}

.troubleshooting-item:last-child {
    margin-bottom: 0;
}

.troubleshooting-item h3 {
    color: #da7c14;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.troubleshooting-item ul {
    margin-left: 20px;
    color: #555;
}

.troubleshooting-item li {
    margin-bottom: 10px;
}

/* Review Section */
.review-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #da7c14 0%, #f5a742 100%);
    border-radius: 15px;
    color: white;
}

.review-section h2 {
    color: white;
    margin-bottom: 15px;
}

.review-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.review-button {
    display: inline-block;
    background: white;
    color: #da7c14;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Privacy Section */
.privacy-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.privacy-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.privacy-content h3 {
    color: #da7c14;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-content a {
    color: #da7c14;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content strong {
    color: #333;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        margin: 0 auto;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        width: 100%;
    }

    h2 {
        font-size: 1.5rem;
    }

    .review-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}
