:root {
    --primary-red: #CE5243;
    --primary-orange: #ff6200;
    --text-dark: #333333;
    --text-gray: #545459;
    --text-light-gray: #9e9e9e;
    --bg-light: #f5f6f7;
    --border-color: #cecece;
    --max-width: 1440px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

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



/* CSS for section section:Header */
.site-header {
        width: 100%;
        background-color: #EC5441;
    }

    .top-bar {
background: #0000001A;

padding: 10px;
        display: flex;
        align-items: center;
    }

    .top-bar-inner {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .radio-promo {
        display: flex;
        align-items: center;
    }

    .top-actions {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .social-icons {
        display: flex;
        gap: 10px;
    }

    .social-icons .icon img {
        width: 30px;
        height: 30px;
    }

    .user-actions {
        display: flex;
        gap: 20px;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
    }

    .action-item {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
    }

    .main-nav-bar {

        height: 98px;
        display: flex;
        align-items: center;
    }

    .nav-inner {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 54px;
    }

    .nav-links {
        display: flex;
        gap: 22px;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        align-items: center;
    }

    .more-link {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .arrow-down {
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        margin-top: -4px;
    }

    .search-btn {
        cursor: pointer;
    }

    @media (max-width: 1024px) {
        .nav-links {
            display: none; /* Simplified for mobile */
        }
        .top-bar {
            display: none;
        }
    }

/* CSS for section section:MainContent */
#main-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .content-grid {
        display: flex;
        gap: 60px;
    }

    .article-column {
        flex: 1;
        max-width: 900px;
    }

    .sidebar-column {
        width: 317px;
        flex-shrink: 0;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        display: flex;
        gap: 5px;
        color: var(--primary-red);
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .breadcrumbs .separator {
        color: var(--text-gray);
    }

    /* Header */
    .kicker {
        color: var(--primary-red);
        font-size: 21px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .headline {
        font-size: 32px;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .subheadline {
        font-size: 20px;
        line-height: 1.5;
        color: var(--text-gray);
        margin-bottom: 20px;
    }

    /* Meta */
    .article-meta-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .meta-info {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 12px;
        color: var(--text-gray);
    }

    .reading-time, .listen-btn {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .listen-text {
        color: var(--primary-red);
        font-weight: 700;
    }

    .share-buttons {
        display: flex;
        gap: 10px;
    }

    .share-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .share-icon.fb { background: #3b5998; }
    .share-icon.tw { background: #00aced; }
    .share-icon.li { background: #007bb6; }
    .share-icon.mail { background: #aca8a7; }
    .share-icon.link { background: #474747; }

    /* Image */
    .main-image {
        margin: 0 0 30px 0;
    }
    .main-image figcaption {
        font-size: 12px;
        color: #9e9e9e;
        margin-top: 8px;
    }

    /* Body */
    .article-body {
        font-size: 18px;
        line-height: 1.6;
        color: var(--text-gray);
    }

    .intro-text {
        font-weight: 700;
        color: #48484c;
        margin-bottom: 20px;
    }

    .text-block p, .quote-block p {
        margin-bottom: 20px;
    }

    .quote-block {
        border-left: 4px solid var(--primary-red);
        padding-left: 20px;
        margin: 30px 0;
    }
    
    .quote-intro, h3 {
        font-weight: 700;
        color: var(--text-dark);
        font-size: 24px;
        margin-bottom: 10px;
    }

    .highlight-text {
        color: var(--primary-red);
        font-weight: 700;
        margin: 30px 0;
    }

    .steps-block {



        margin-bottom: 30px;
    }
    .steps-list {
        list-style: decimal;
padding-left: 20px;
    }
    .steps-list li::marker {
        font-weight: 700;
    }
    .steps-list li {
        margin-bottom: 10px;

    }

    .warning-box {
        border: 1px solid var(--primary-red);
        padding: 24px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    .warning-box h4 {
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    /* Form */
    .registration-form-container {
background: linear-gradient(188.48deg, #FFFFFF 40.2%, #EEEEEE 100.17%);

        border: 2px solid var(--primary-orange);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        max-width: 665px;
        margin: 40px auto;
    }

    .form-header {
        margin-bottom: 20px;

    }
    .form-logo {
        margin: 0 auto 15px;
        width: 112px;
    }

    .form-body {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .form-body label {
        font-size: 18px;
    }

    .age-selector {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .age-btn {
        background: rgba(0,0,0,0.55);
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 12px;
        cursor: pointer;
    }
    .age-btn.active {
        background: var(--primary-orange);
    }

    .input-group input {
        width: 100%;
        padding: 15px;
        border: 1px solid #c0c0c0;
        border-radius: 12px;
        font-size: 16px;
    }

    .phone-group {
        display: flex;
        gap: 10px;
    }
    .country-code {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0 10px;
        border: 1px solid #c0c0c0;
        border-radius: 12px;
        background: #fff;
    }

    .submit-btn {
        background: var(--primary-orange);
        color: #fff;
        border: none;
        padding: 15px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
    }

    .form-note {
        font-size: 12px;
        color: #737373;
    }

    /* Tags */
    .article-tags {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 40px;
    }
    .tag-label {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #8e8e8e;
        font-weight: 700;
    }
    .tags-list {
        display: flex;
        gap: 10px;
    }
    .tag {
        background: var(--primary-red);
        color: #fff;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
    }

    /* Comments */
    .comments-section {
        background: #fff;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 8px;
    }
    .comments-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .comment-input-area {
        margin-bottom: 30px;
    }
    .input-box {
        border: 1px solid #eee;
        padding: 15px;
        color: #aaa;
        margin-bottom: 10px;
    }
    .post-btn {
        background: #a1b3d5;
        color: #fff;
        border: none;
        padding: 5px 15px;
        border-radius: 2px;
        float: right;
    }
    .comment-item {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    .avatar {
        width: 48px;
        height: 48px;
    }
    .author {
        color: #385898;
        font-weight: 700;
        font-size: 14px;
    }
    .text {
        font-size: 14px;
        margin: 5px 0;
    }
    .actions {
        font-size: 12px;
        color: #90949c;
    }
    .action {
        color: #4267b2;
        cursor: pointer;
    }
    .load-more-btn {
        width: 100%;
        background: #a1b3d5;
        color: #fff;
        border: none;
        padding: 10px;
        margin-top: 0;
    }

    /* Sidebar */
    .sidebar-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .red-marker {
        width: 5px;
        height: 22px;
        background: var(--primary-red);
        opacity: 0.3;
    }
    .sidebar-header h3 {
        color: var(--primary-red);
        font-size: 21px;
        font-weight: 700;
    }
    .sidebar-item {
        display: block;
        margin-bottom: 20px;
        font-size: 17px;
        font-weight: 700;
        color: var(--text-gray);
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    @media (max-width: 1024px) {
        .content-grid {
            flex-direction: column;
        }
        .sidebar-column {
            width: 100%;
        }
    }

/* CSS for section section:Footer */
#site-footer {
        background-color: #4a494f;
        color: #fff;
        padding: 50px 0;
        font-size: 14px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-links .sep {
        opacity: 0.5;
    }

    .address-info {
        color: #ccc;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-top: 1px solid #64636c;
        padding-top: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright p {
        margin-bottom: 5px;
        color: #ccc;
    }

    .app-stores {
        display: flex;
        gap: 20px;
    }




    /* CSS for section section:Comments */
    .comments-wrapper {
      padding: 20px;
      background-color: #fff;
      border: 1px solid rgba(45, 57, 76, 0.1);
      border-radius: 8px;
      margin: 20px;
    }

    .comments-header-block {
      margin-bottom: 20px;
      margin-left: 20px;
      margin-right: 20px;
      border-radius: 8px;
    }

    .emol-social-header {
      display: flex;
      gap: 10px;
      background-color: #e3e7ea;
      padding: 12px;
      border: 1px solid #d3d6db;
    }

    .emol-social-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .welcome-msg {
      font-size: 12px;
    }

    .blue-line {
      height: 2px;
      background-color: #5684b8;
      width: 100%;
      margin-bottom: 2px;
    }

    .comments-disclaimer {
      background-color: #f3f3f3;
      padding: 12px;
      font-size: 12px;
      border: 1px solid #d3d6db;
      margin-top: -1px;
    }

    .comments-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 24px;
      font-size: 14px;
    }

    .sort-dropdown {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sort-select {
      background-color: #f5f6f7;
      border: 1px solid #cdd0d5;
      padding: 2px 8px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .sort-arrows {
      display: flex;
      flex-direction: column;
    }

    .arrow-up {
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-bottom: 4px solid #4b4f56;
      margin-bottom: 1px;
    }

    .arrow-down {
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #4b4f56;
    }

    .divider {
      height: 1px;
      background-color: rgba(45, 57, 76, 0.1);
      margin: 16px 0;
    }

    .comment-input-area {
      border: 1px solid rgba(45, 57, 76, 0.1);
      margin-bottom: 24px;
    }

    .input-box {
      padding: 16px 12px;
      color: rgba(0, 0, 0, 0.3);
    }

    .post-btn-wrapper {
      background-color: #f5f6f7;
      padding: 10px;
      display: flex;
      justify-content: flex-end;
      border-top: 1px solid rgba(45, 57, 76, 0.1);
    }

    .post-btn {
      background-color: #a1b3d5;
      color: white;
      border: none;
      padding: 5px 8px;
      border-radius: 2px;
      font-weight: bold;
    }

    .comment-item {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }

    .comment-item.reply {
      margin-top: 12px;
      margin-left: 32px;
      margin-bottom: 0;
    }

    .comment-item.reply .avatar {
      width: 40px;
      height: 40px;
    }

    .avatar {
      width: 48px;
      height: 48px;
    }

    .comment-body {
      flex: 1;
    }

    .comment-author {
      color: #385898;
      font-weight: bold;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .comment-text {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .comment-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #90949c;
    }

    .action-group {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .action-link {
      color: #4267b2;
      cursor: pointer;
    }

    .load-more-container {
      background-color: #a1b3d5;
      padding: 5px;
      text-align: center;
      border-radius: 2px;
      margin-top: 20px;
    }

    .load-more-btn {
      background: none;
      border: none;
      color: white;
      font-weight: bold;
      width: 100%;
    }

    .fb-plugin-footer {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 10px;
      font-size: 12px;
      color: #385898;
    }

    .fb-icon {
      background-color: #385898;
      color: white;
      width: 12px;
      height: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 10px;
    }




    .mob, .nav-links-mob {
        display: none;
    }


    @media(max-width: 767px) {
 .pc, .sidebar-column {
            display: none;
        }
        .mob {
            display: block;
        }

            .nav-links-mob {
        display: flex;
        gap: 22px;
        color: #fff;
        font-weight: 400;
        font-size: 15px;
        align-items: center;
        padding: 25px 0 15px;
        overflow-x: scroll;
        text-wrap: nowrap;
justify-content: space-around;
width: 100%;
    }
    .main-nav-bar {
        flex-direction: column;
        height: auto;
        padding: 10px;
        overflow-x: hidden;
    }
    .nav-inner  {
        padding: 0;
    }

    .kicker, .text-block p, .quote-block p {
        font-size: 18px;
    }
    .headline, .quote-block .quote-intro {
        font-size: 24px;
    }
    .article-meta-bar {
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }
    .steps-list {
        padding-top: 15px;
    }
    .tags-list {
        flex-direction: column;

    }
    .article-tags {
        align-items: START;;
    }
    .tag {
        width: fit-content;
    }
    .comments-wrapper {
        margin: 0;
    }
    #section-comments .container {
        padding: 0;
    }

    .footer-top {
        flex-direction: column-reverse;
    }
    .address-info {
        text-align: center;
    }
    .footer-links, .footer-bottom {
        justify-content: center;
        text-align: center;

    }

    #main-content {
        padding-top: 20px;
    }

   
    }