/* General Styles */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

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

.brand-logo {
    color: #0e4f8a;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    text-decoration: none;
    text-transform: lowercase;
}

.advertisement {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Main Content Layout */
.content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.main-article {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar {
    flex: 1;
}

/* Article Styles */
.breadcrumb {
    font-size: 14px;
    color: #999;
    margin: 20px 0;
}

.trending-tag {
    display: inline-block;
    background-color: #fff3e0;
    color: #ff9800;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-text {
    flex-grow: 1;
}

.author-name {
    font-weight: bold;
    color: #333;
}

.updated-date {
    font-size: 14px;
    color: #777;
}

.rating {
    text-align: right;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

.review-count {
    font-size: 14px;
    color: #777;
}

.hero-images img, .article-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.caption {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-box {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f00;
    color: #fff;
    padding: 18px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

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

/* Sidebar CTA */
.sidebar-cta {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: sticky;
    top: 20px;
}

.sidebar-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sidebar-button {
    display: block;
    background-color: #ff6f00;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.sidebar-button:hover {
    background-color: #e65100;
}

/* Order Form */
.order-section {
    background-color: #f0f7ff;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    border: 2px solid #007bff;
}

.static-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: bold;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input {
    width: auto;
}

.submit-button {
    background-color: #28a745;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .header-content {
        gap: 16px;
    }
    
    h1 {
        font-size: 28px;
    }

    .brand-logo {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}
