.elementor-2098 .elementor-element.elementor-element-108aef0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f74efce */.mgc-cornea-container {
        font-family: inherit; /* Uses default WordPress theme font */
        color: #333333;
        line-height: 1.6;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Section Styling */
    .mgc-section {
        background-color: #ffffff;
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        border: 1px solid #f2f2f2;
        transition: box-shadow 0.3s ease;
        box-sizing: border-box;
    }
    
    .mgc-section:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    /* Headings */
    .mgc-section h1 {
        color: #f22283;
        font-size: 2.2rem;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .mgc-section h2 {
        color: #f22283;
        font-size: 1.8rem;
        margin-top: 10px;
        margin-bottom: 15px;
        border-bottom: 2px solid #f2f2f2;
        padding-bottom: 10px;
    }

    .mgc-section h3 {
        color: #1f3d9d;
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    /* Images */
    .mgc-image-wrapper {
        text-align: center;
        margin: 25px 0;
    }
    .mgc-image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* AEO Snippet Block */
    .mgc-aeo-snippet {
        background-color: #f9fbfd;
        border-left: 5px solid #f22283;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 0 10px 10px 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: #1f3d9d;
    }

    /* Table of Contents */
    .mgc-toc {
        background-color: #f4f6fb;
        border: 1px solid #e1e5f2;
        border-radius: 15px;
        padding: 0;
        margin-bottom: 30px;
        overflow: hidden;
    }
    .mgc-toc-header {
        padding: 15px 20px;
        background-color: #1f3d9d;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }
    .mgc-toc-header h3 {
        color: #ffffff;
        margin: 0;
        font-size: 1.2rem;
    }
    .mgc-toc-content {
        padding: 20px;
        display: none; /* Collapsed by default */
    }
    .mgc-toc-content ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    .mgc-toc-content ul li {
        margin-bottom: 10px;
    }
    .mgc-toc-content ul li a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mgc-toc-content ul li a:hover {
        color: #f22283;
    }

    /* Tables */
    .mgc-table-responsive {
        overflow-x: auto;
        margin: 20px 0;
    }
    .mgc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .mgc-table th {
        background-color: #1f3d9d;
        color: #ffffff;
        padding: 12px 15px;
        text-align: left;
    }
    .mgc-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eeeeee;
    }
    .mgc-table tr:hover {
        background-color: #fdf5f9;
    }

    /* Links & Highlights */
    .mgc-section a {
        color: #f22283;
        text-decoration: none;
        font-weight: 600;
    }
    .mgc-section a:hover {
        text-decoration: underline;
        color: #1f3d9d;
    }
    .mgc-highlight-red {
        color: #ff0000;
        font-weight: bold;
        background-color: #ffe6e6;
        padding: 3px 6px;
        border-radius: 5px;
        display: inline-block;
        border: 1px solid #ff0000;
    }

    /* FAQ Accordion */
    .mgc-faq-item {
        border-bottom: 1px solid #eeeeee;
        margin-bottom: 10px;
    }
    .mgc-faq-question {
        padding: 15px 0;
        cursor: pointer;
        font-weight: bold;
        color: #1f3d9d;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s ease;
    }
    .mgc-faq-question:hover {
        color: #f22283;
    }
    .mgc-faq-answer {
        padding: 0 0 15px 0;
        display: none;
        color: #555555;
    }

    /* CTA Button */
    .mgc-cta-btn {
        display: inline-flex;
        align-items: center;
        background-color: #f22283;
        color: #ffffff !important;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none !important;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        margin-top: 15px;
        border: none;
        cursor: pointer;
    }
    .mgc-cta-btn i {
        margin-right: 8px;
        font-size: 1.3rem;
    }
    .mgc-cta-btn:hover {
        background-color: #119809; /* Rare Color */
        box-shadow: 0 5px 15px rgba(17, 152, 9, 0.4);
        transform: translateY(-2px);
    }
    .mgc-text-center {
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .mgc-section {
            padding: 15px;
        }
        .mgc-section h1 {
            font-size: 1.8rem;
        }
        .mgc-section h2 {
            font-size: 1.5rem;
        }
    }/* End custom CSS */