@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

.note-editor{}
.note-editor .note-toolbar ul{
    list-style-type: none;
    padding: unset;
}
.note-editor .note-toolbar ul li{
    list-style: none;
    margin-inline-start: unset;
}
.note-editing-area{
    font-size: 14px;
}


.single-content h2{
    color: var(--primary-color);
}
.single-content h4{
    color: var(--primary-color);
}
.single-content h3{
    color: var(--primary-color);
}
.single-content h5{
    color: var(--primary-color);
}

.single-content ul{
    padding: inherit;
    /* display: block; */
    list-style-type: disc;
    /* margin-block-start: 1em; */
    /* margin-block-end: 1em; */
    /* padding-inline-start: 40px; */
    /* unicode-bidi: isolate; */
}
.single-content ul li{
    list-style: disc;
    margin-inline-start: 20px;
}

.single-content hr + p > br:first-child{
    /* display:none; */
}

.single-content hr {
    margin-block: 15px !important;
}


.note-callout {
  background-color: #fef9e7;
  padding: 12px;
  border-left: 4px solid #f5c518;
  font-style: italic;
}

.warning-box {
  background-color: #fdecea;
  border-left: 4px solid #e74c3c;
  padding: 12px;
  font-weight: bold;
  color: #c0392b;
}



/* Typography */
.main-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.sub-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 500;
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 2rem;
}

.intro-p,
.conclusion-p {
    font-size: 1rem; /* text-base */
    /* line-height: 1.75rem; */
}

.intro-p {
    margin-bottom: 3rem; /* mb-12 */
}

/* Section Styles */
.features-section {
    margin-bottom: 3rem; /* mb-12 */
    margin-top: 6rem;
}

.section-title-container {
    display: flex;
    flex-wrap: nowrap;
    /* align-items: center; */
    margin-bottom: 4rem; /* mb-6 */
    gap: 1rem;
}
.section-title-container p{
    display:none;
}
.title-accent-bar {
    width: 0.25rem; /* w-1 */
    /* height: 2rem; */ /* h-8 */
    background-color: #16a34a; /* bg-green-600 */
    border-radius: 9999px; /* rounded-full */
    /* margin-right: 1rem; */ /* mr-4 */
}

.section-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    color: var(--primary-color-dark); /* text-gray-900 */
}

/* Features List (for simple bullet points) */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item span {
        font-size: 1rem;
        line-height: 1.75rem;
}

.feature-bullet {
    flex-shrink: 0;
    width: 0.5rem; /* w-2 */
    height: 0.5rem; /* h-2 */
    margin-top: 0.5rem; /* mt-2 */
    background-color: #16a34a; /* bg-green-600 */
    border-radius: 9999px; /* rounded-full */
    margin-right: 0.75rem; /* mr-3 */
}

/* Core Modules Grid */
.core-modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.module-item {
    padding: 1rem;
    border-left: 3px solid #d1d5db; /* border-gray-300 */
}

.module-title {
    font-size: 2.125rem !important; /* text-lg */
    font-weight: 700;
    margin-bottom: 0.5rem !important;
    color: var(--secondary-color) !important;
}

.module-features {
    font-size: 1.75rem;
    line-height: 1.6;
    color: #4b5563; /* text-gray-600 */
    margin: 0;
}

/* Final "Why Choose" Section */
.why-choose-section {
    background-color: #f9fafb; /* gray-50 */
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb; /* gray-200 */
}

/* Responsive Design using Media Queries */
@media (min-width: 768px) {
    .intro-p,
    .conclusion-p,
    .feature-item span {
        font-size: 2.025rem; /* md:text-lg */
    }
    .core-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




