
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
            --primary: #3a4f6c;
            --secondary: #c77d63;
            --accent: #6b8e9b;
            --light: #f8f5f2;
            --dark: #2a2a2a;
            --text: #444444;
            --border: #e0d6cc;
        }

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            /* font-family: 'Poppins', sans-serif; */
            line-height: 1.8;
            color: var(--text);
            background-color: rgb(251, 250, 250);
            font-weight: 400;
        }
        
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* font-family: 'Roboto', sans-serif; */
}

 h3 {
  /* font-family: 'EB Garamond', serif; */
  font-weight: 600; /* Strong and professional */
  color: #1C1C1C;
  font-size: 1.4rem;
}
body, .p {
  font-family: 'Source Sans Pro', sans-serif;
  /* font-weight: 400; */
  /* line-height: 1.7;  */
}
body{
    line-height: 1.6;
}

        .containerrr {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* .background{
            margin-top: 100px;
            background-color: #6b8e9b;

        } */
        .article-header {
            padding: 4rem 0 3rem;
            text-align: center;
            border-bottom: 1px solid var(--border);
            margin-bottom: 3rem;
            margin-top: 100px;


        }
        
        .article-header h1 {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-weight: 700;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            color: var(--accent);
            font-size: 0.95rem;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .breadcrumb {
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        
        article {
            flex: 2;
            min-width: 300px;
        }
        
        aside {
            flex: 1;
            min-width: 280px;
        }
        
        h2 {
            /* font-family: 'Playfair Display', serif; */
            color: var(--primary);
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }
        
        h3 {
            /* font-family: 'Playfair Display', serif; */
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2.5rem 0 1rem;
            font-weight: 600;
        }
        
        h4 {
            /* font-family: 'Poppins', sans-serif; */
            color: var(--dark);
            font-size: 1.2rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
       .containerrr ul, ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }
        
        .containerrr li {
            margin-bottom: 0.8rem;
        }
        
        .highlight-box {
            background-color: white;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            border-radius: 0 4px 4px 0;
        }
        
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            background: white;
        }
        
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 500;
            text-align: left;
            padding: 1rem;
        }
        
        td {
            padding: 1rem;
            border-bottom: 1px solid var(--border);
        }
        
        tr:nth-child(even) {
            background-color: rgba(0,0,0,0.02);
        }
        
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-radius: 6px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border);
        }
        
        .widget-links li {
            list-style: none;
            margin-bottom: 0.6rem;
        }
        
        .widget-links a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 0.6rem 0;
            font-size: 0.98rem;
            border-bottom: 1px solid var(--border);
        }
        
        .widget-links a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }
        
        .backlink {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .backlink:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        
        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }
       
        
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.4rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        article section {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        article section:nth-child(2) { animation-delay: 0.1s; }
        article section:nth-child(3) { animation-delay: 0.2s; }
        article section:nth-child(4) { animation-delay: 0.3s; }
        article section:nth-child(5) { animation-delay: 0.4s; }
        article section:nth-child(6) { animation-delay: 0.5s; }
    