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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advertorial Mark */
.advertorial-mark {
    background-color: #ff6b35;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Header */
.header {
    background-color: #0f0f0f;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-text:hover::after {
    opacity: 1;
}

.btn-home {
    background-color: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #ff6b35;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ff6b35;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffa500;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #ffa500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.feature-card p {
    color: #cccccc;
    font-size: 16px;
}

/* About Product Section */
.about-product {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #ff6b35;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #0f0f0f;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.stat h3 {
    font-size: 36px;
    color: #ffa500;
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
    color: #cccccc;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ingredient-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.ingredient-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ingredient-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #ffa500;
}

.ingredient-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #cccccc;
}

.full-ingredients {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
}

.full-ingredients h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6b35;
}

.full-ingredients p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
}

/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.how-to-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-to-text h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #ff6b35;
    font-weight: 700;
}

.usage-steps {
    margin-bottom: 40px;
}

.usage-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background-color: #ff6b35;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffa500;
}

.step-content p {
    font-size: 16px;
    color: #cccccc;
}

.storage-info {
    background-color: #0f0f0f;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.storage-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffa500;
}

.storage-info p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
}

.how-to-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.testimonials-disclaimer {
    font-size: 14px;
    color: #ffa500;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
}

.testimonial-info h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: #cccccc;
}

.testimonial-rating {
    color: #ffa500;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    font-style: italic;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-content {
    padding: 60px;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 700;
}

.form-content > p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error {
    border-color: #ff4444;
}

.btn-submit {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #ffa500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.form-note {
    font-size: 14px;
    color: #cccccc;
    text-align: center;
}

.success-message {
    text-align: center;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #4caf50;
}

.success-message h3 {
    font-size: 28px;
    color: #4caf50;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: #cccccc;
}

.form-image {
    position: relative;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 60px 0 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-disclosures {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.disclosure {
    background-color: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid #ff6b35;
}

.disclosure p {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.8;
}

.disclosure strong {
    color: #ffa500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .how-to-content,
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .form-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .ingredients-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .form-content {
        padding: 40px 30px;
    }

    .section-header h2,
    .about-text h2,
    .how-to-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-submit {
        padding: 15px 30px;
        font-size: 16px;
    }

    .form-content {
        padding: 30px 20px;
    }

    .logo-text {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

/* Contact Form Page Styles */
.contact-form-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #2a2a2a;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ff6b35;
    font-weight: 700;
}

.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
}

.contact-form-page .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-page .form-group label {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
}

.contact-form-page .form-group input[type="text"],
.contact-form-page .form-group input[type="email"],
.contact-form-page .form-group input[type="tel"],
.contact-form-page .form-group select,
.contact-form-page .form-group textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    background-color: #0f0f0f;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.contact-form-page .form-group input[type="text"]:focus,
.contact-form-page .form-group input[type="email"]:focus,
.contact-form-page .form-group input[type="tel"]:focus,
.contact-form-page .form-group select:focus,
.contact-form-page .form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background-color: #1a1a1a;
}

.contact-form-page .form-group input[type="text"]::placeholder,
.contact-form-page .form-group input[type="email"]::placeholder,
.contact-form-page .form-group input[type="tel"]::placeholder,
.contact-form-page .form-group textarea::placeholder {
    color: #666666;
}

.contact-form-page .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Roboto', sans-serif;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff6b35;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.contact-form-page .btn-submit {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

.contact-form-page .btn-submit:hover {
    background-color: #ffa500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.contact-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-message.success-message {
    background-color: #1a3a1a;
    border: 2px solid #4caf50;
    color: #4caf50;
}

.contact-message.error-message {
    background-color: #3a1a1a;
    border: 2px solid #ff4444;
    color: #ff4444;
}

.contact-message strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Contact Information Sections */
.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.notice-section {
    background-color: #0f0f0f;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #ff6b35;
}

.faq-section {
    margin: 40px 0;
}

.faq-section > h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ff6b35;
    font-weight: 700;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

main.container section section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid #2a2a2a;
}

main.container section section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff6b35;
    font-weight: 700;
}

main.container section section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffa500;
    font-weight: 600;
}

main.container section section p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

main.container section section ul {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

main.container section section ul li {
    margin-bottom: 10px;
}

main.container section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 700;
}

main.container section > p:first-of-type {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 28px;
    }

    .faq-section > h2 {
        font-size: 28px;
    }

    main.container section h1 {
        font-size: 32px;
    }

    main.container section section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 20px 15px;
    }

    .contact-form-section h2 {
        font-size: 24px;
    }

    main.container section h1 {
        font-size: 28px;
    }

    .contact-form-page .btn-submit {
        padding: 15px 30px;
        font-size: 16px;
    }
}