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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #f1fafe 0%, #e8f6fb 100%);
    padding: 40px 20px;
    border-bottom: 3px dashed #4dadd5;
    border-top: 3px dashed #4dadd5;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    color: #4dadd5;
    font-weight: 600;
    margin: 0;
}

.author-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-column {
    flex: 1;
}

.sidebar {
    width: 300px;
}

/* Sections */
.intro-section {
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* Promotional Image Section */
.promo-image-section {
    margin-bottom: 40px;
    border: 3px dashed #4dadd5;
    padding: 20px;
    background-color: #f1fafe;
    border-radius: 8px;
}

.promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #b3e5fc;
    padding: 15px;
    border-radius: 8px;
}

.logo {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* CTA Buttons */
.cta-button-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #4dadd5;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #3a8fb5;
}

.primary-cta {
    font-size: 18px;
    padding: 18px 50px;
}

.large-cta {
    font-size: 20px;
    padding: 20px 60px;
    width: 100%;
    max-width: 500px;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.feature-item:nth-child(even) {
    direction: rtl;
}

.feature-item:nth-child(even) > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.feature-content {
    padding: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.feature-quote {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #4dadd5;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    border-radius: 4px;
}

.quote-author {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Trust Section */
.trust-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.trust-testimonial {
    border-left: 4px solid #4dadd5;
    padding-left: 20px;
}

.trust-quote {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.trust-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.trust-badge {
    display: inline-block;
    background-color: #4dadd5;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.trust-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.trust-benefits {
    list-style: none;
    margin-bottom: 15px;
}

.trust-benefits li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.trust-footnote {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* How to Use Section */
.how-to-section {
    margin-bottom: 60px;
}

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

.step {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4dadd5;
    margin-bottom: 15px;
}

.step-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* CTA Section 2 */
.cta-section-2 {
    background: linear-gradient(135deg, #f1fafe 0%, #e8f6fb 100%);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
    border: 3px dashed #4dadd5;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Product Card - Sidebar */
.product-card {
    background-color: #f9f9f9;
    border: 3px dashed #4dadd5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 20px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.product-rating {
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    font-size: 18px;
    margin: 0 2px;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.product-offer {
    margin-bottom: 20px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -30px;
    right: 10px;
    background-color: #ff4444;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-cta {
    background-color: #4dadd5;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-cta:hover {
    background-color: #3a8fb5;
}

.product-features {
    margin-top: 20px;
}

.feature-check {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbe6 100%);
    padding: 60px 20px;
    border-top: 3px dashed #4dadd5;
    border-bottom: 3px dashed #4dadd5;
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border: 3px dashed #ffd700;
    border-radius: 8px;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offer-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offer-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.deal-timer {
    margin-bottom: 20px;
}

.timer-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.timer-value {
    color: #ff4444;
    font-weight: 700;
    font-size: 16px;
}

.guarantee-text {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-top: 3px dashed #4dadd5;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.footer-nav {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    font-size: 13px;
    color: #4dadd5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3a8fb5;
    text-decoration: underline;
}

.company-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.company-name {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.company-abn,
.company-address,
.company-phone {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

/* Form Styles */
.contact-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4dadd5;
    box-shadow: 0 0 0 3px rgba(77, 173, 213, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}

.checkbox-group a {
    color: #4dadd5;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Subpage content spacing */
.content-column h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    margin-bottom: 8px;
}

.content-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    margin-bottom: 6px;
}

.content-column p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.content-column ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.content-column ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 6px;
}

.content-column a {
    color: #4dadd5;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .sidebar {
        width: 100%;
    }

    .product-card {
        position: static;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item:nth-child(even) {
        direction: ltr;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .header {
        padding: 25px 15px;
    }

    .bottom-cta-section {
        padding: 30px 15px;
    }

    .offer-box {
        padding: 25px;
    }

    .offer-title {
        font-size: 22px;
    }

    .offer-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .media-logos {
        gap: 10px;
    }

    .logo {
        font-size: 11px;
    }

    .offer-title {
        font-size: 18px;
    }

    .offer-subtitle {
        font-size: 14px;
    }

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