* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,sans-serif;
}

/* Header */
        .header {
            background: linear-gradient(135deg, #78b9b5 0%, #5a9e9a 100%);
            color: white;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        /* Navigation Bar */
        .nav-bar1 {
            background: rgba(96, 149, 145, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 60px;
        }

        .logo {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Header Content Area */
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px 80px;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            margin-bottom: 25px;
            font-size: 13px;
            opacity: 0.7;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: white;
        }

        .breadcrumb span {
            margin: 0 8px;
            opacity: 0.5;
        }

        .category-tag {
            display: inline-block;
            background: #ff8a56;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 20px;
        }

        .header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: white;
            letter-spacing: -1px;
        }

        .header .subtitle {
            font-size: 1.1rem;
            opacity: 0.85;
            margin-bottom: 35px;
            max-width: 900px;
            line-height: 1.6;
            font-weight: 400;
        }

        .article-meta {
            display: flex;
            gap: 25px;
            font-size: 13px;
            opacity: 0.75;
            font-weight: 400;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-item svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

/* Main Content */
        .container {
            max-width: 800px;
            margin: -40px auto 0;
            background: white;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .article-content {
            padding: 60px 50px;
        }

        .article-content h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            margin: 40px 0 20px 0;
            line-height: 1.3;
        }

        .article-content h2:first-child {
            margin-top: 0;
        }

        .article-content p {
            font-size: 1.1rem;
            line-height: 26px;
            margin-bottom: 24px;
            color: #374151;
            text-align: justify;
        }

        .article-content p:nth-child(1) {
            font-size: 1.2rem;
            font-weight: 500;
            color: #1f2937;
            border-left: 4px solid #0ea5e9;
            padding-left: 24px;
            margin-bottom: 32px;
        }

        /* Highlight key sections */
        .highlight-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 4px solid #0ea5e9;
            padding: 30px;
            text-align: left;
            margin: 32px 0;
            border-radius: 0 12px 12px 0;
        }

        .highlight-section h3 {
            color: #0369a1;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Article Images */
        .article-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            margin: 32px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
            font-style: italic;
            margin-top: 8px;
            margin-bottom: 24px;
        }

        #alignment{
            text-align: left;
        }

        #align{
            text-align: left;
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #78B9B5 0%, #5a9e9a 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .cta-content h2 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn.primary {
            background: #ff8a56;
            color: white;
        }

        .cta-btn.primary:hover {
            background: #ff7043;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 138, 86, 0.3);
        }

        .cta-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cta-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .cta-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 138, 86, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .feature-item h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #ffffff;
        }

        .feature-item p {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.4;
        }

a{
    color: #068D9A;
    text-decoration: none;
}

ul {
  margin: 0;          /* removes extra space above/below the list */
  padding-left: 15px; /* keep indentation (optional) */
}

ul li {
  margin: 1px 0;      /* reduce vertical gap between bullet points */
}


p + p {
  margin-top: 1px; /* only affects paragraphs that follow another paragraph */
}

div + div {
  margin-top: 0.4px;  /* only adds space between divs, not before the first one */
}

#height{
    text-align: left;
}

#height>li{
    line-height: 30px;
}

#heightss{
    text-align: left;
    line-height: 30px;
}

.scale{
text-align: left;
}
.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #068D9A;
}



.share-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 1rem;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.share-text {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #4a5568;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.share-button:hover::before {
    left: 100%;
}

.share-button.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-button.facebook {
    background: linear-gradient(135deg, #1877f2, #0866d3);
    color: white;
}

.share-button.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 0;
            }

            .nav-container {
                padding: 0 20px;
                flex-direction: column;
                gap: 15px;
            }

            .header-content {
                padding: 40px 20px 60px;
            }

            .header h1 {
                font-size: 2.2rem;
            }

            .header .subtitle {
                font-size: 1rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 12px;
            }

            .container {
                margin: -20px 15px 0;
                border-radius: 15px 15px 0 0;
            }

            .article-content {
                padding: 40px 25px;
            }

            .article-content h2 {
                font-size: 1.5rem;
            }

            .article-content p {
                font-size: 1rem;
                text-align: left;
            }

            .article-image {
                height: 200px;
            }

            .cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-buttons {
                justify-content: center;
            }
        }

        /* Smooth animations */
        .header, .container {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }