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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #F4F4F4 0%, #ffffff 100%);
    color: #0D0D0D;
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #D4AF37);
    border-radius: 2px;
}

.hero-title {
    font-size: 3.2em;
    font-weight: 700;
    color: #003E6B;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-title a {
    text-decoration: none;
    color: #003E6B;
}
.hero-subtitle {
    font-size: 1.3em;
    color: #FF6B00;
    font-weight: 500;
    margin-bottom: 30px;
}

.content-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 62, 107, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B00, #003E6B, #D4AF37);
}

.section-title {
    font-size: 1.8em;
    color: #003E6B;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #FF6B00;
    border-radius: 2px;
}

.highlight-text {
    background: linear-gradient(120deg, transparent 0%, #FF6B00 0%, #FF6B00 100%);
    background-size: 100% 0.3em;
    background-repeat: no-repeat;
    background-position: 0 88%;
    padding: 2px 0;
    font-weight: 600;
    color: #0D0D0D;
}

.company-highlight {
    color: #FF6B00;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.product-card {
    background: linear-gradient(135deg, #003E6B, #FF6B00);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 62, 107, 0.3);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-name {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.quote-section {
    background: linear-gradient(135deg, #003E6B, #0D0D0D);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    font-size: 8em;
    position: absolute;
    top: -20px;
    left: 30px;
    color: #D4AF37;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.4em;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.cta-section {
    background: linear-gradient(135deg, #FF6B00, #D4AF37);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.cta-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2em;
    opacity: 0.95;
}

.accent-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF6B00;
    border-radius: 50%;
    margin: 0 10px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

.ironic-note {
    font-style: italic;
    color: #003E6B;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .content-section {
        padding: 30px 25px;
    }

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: #FF6B00;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: #003E6B;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: #D4AF37;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Article Section Styles */
.article-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0, 62, 107, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #FF6B00, #003E6B);
}

.article-section-title {
    font-size: 2.2em;
    color: #003E6B;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.article-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #D4AF37);
    border-radius: 2px;
}

.article-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 62, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #FF6B00;
}
.article-card-read {
    gap: 30px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 62, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #FF6B00;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 62, 107, 0.15);
}

.article-image {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-image-read {
    flex-shrink: 0;
    width: 100%;
    height: 50vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}


.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article-image-read img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
}

.article-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #003E6B;
    margin-bottom: 10px;
    line-height: 1.4;
    text-decoration: none;
}

.article-title:hover {
    color: #FF6B00;
}

.article-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.article-date {
    color: #999;
    font-size: 0.85em;
    font-weight: 500;
}

.article-detail-btn {
    background: linear-gradient(135deg, #FF6B00, #D4AF37);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.article-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .content-section {
        padding: 30px 25px;
    }

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

    .article-card {
        flex-direction: column;
        gap: 20px;
    }

    .article-image {
        width: 100%;
        height: 200px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
.language-switcher {
    text-align: right;
}
.language-switcher a {
    color: #003E6B;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
}
/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 15px 50px rgba(0, 62, 107, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.05);
    position: relative;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 62, 107, 0.1);
}

.comments-title {
    font-size: 1.8em;
    color: #003E6B;
    font-weight: 600;
    position: relative;
}

.comments-count {
    background: linear-gradient(135deg, #FF6B00, #D4AF37);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.add-comment-btn {
    background: linear-gradient(135deg, #003E6B, #FF6B00);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 62, 107, 0.2);
}

.add-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 62, 107, 0.3);
}

/* Comment Form */
.comment-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255, 107, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 62, 107, 0.05);
    display: none;
}
.comment-form.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.reply-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255, 107, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 62, 107, 0.05);
}
.reply-form.active {
    display: block;
    animation: slideDown 0.3s ease;
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-size: 1.2em;
    color: #003E6B;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #003E6B;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(0, 62, 107, 0.1);
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

.privacy-note {
    font-size: 0.8em;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6B00, #D4AF37);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.cancel-btn {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #eee;
    color: #333;
}

/* Comments List */
.comments-list {
    margin-top: 30px;
}

.comment {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #FF6B00;
    position: relative;
    padding-right: 0px;
}

.comment.reply {
    margin-left: 40px;
    border-left-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #003E6B;
    font-size: 1em;
}

.comment-date {
    color: #999;
    font-size: 0.8em;
    padding-right: 10px;
}

.comment-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-right: 10px;
}

.comment-actions {
    /* display: flex; */
    gap: 15px;
}

.reply-btn {
    background: none;
    border: none;
    color: #FF6B00;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.reply-btn:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .article-card {
        flex-direction: column;
        gap: 20px;
    }

    .article-image {
        width: 100%;
        height: 200px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .comments-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .form-row {
        flex-direction: column;
    }

    .comment.reply {
        margin-left: 20px;
    }

    .form-actions {
        flex-direction: column;
    }
}
