
        /* Basic Reset */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Font Imports (Example: Using Google Fonts) */
        @import url('inline-font1_1');

        /* Body Styling */
        body {
            font-family: 'Lato', sans-serif; /* Example Font */
            line-height: 1.7;
            color: #E0E0E0; /* Light text for dark background */
            background-color: #141414; /* Dark background */
            overflow-x: hidden; /* Prevent horizontal scroll */
            padding-top: 60px; /* Adjust if using a fixed header */
        }

        /* Main Content Container */
        main {
            max-width: 900px; /* Max width for content */
            margin: 40px auto; /* Center content */
            padding: 20px;
            background-color: #1F1F1F; /* Slightly lighter dark shade for content area */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        /* Headings */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif; /* Different font for headings */
            margin-bottom: 1rem;
            color: #4CAF50; /* Accent color - Green */
            line-height: 1.3;
        }

        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 0.5rem;
            color: #ffffff; /* White for main title */
        }

        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.3rem;
        }

        h3 {
            font-size: 1.5rem;
            color: #81C784; /* Lighter green */
            margin-top: 1.5rem;
        }

        /* Paragraphs */
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            text-align: justify;
        }

        /* Links */
        a {
            color: #66BB6A; /* Link color */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover, a:focus {
            color: #A5D6A7; /* Lighter link color on hover */
            text-decoration: underline;
        }

        /* Call-to-Action Button Styling */
        .cta-button {
            display: inline-block;
            background-color: #4CAF50; /* Accent color */
            color: #ffffff;
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: bold;
            text-align: center;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 1rem;
            cursor: pointer;
        }

        .cta-button:hover, .cta-button:focus {
            background-color: #43A047; /* Darker shade on hover */
            color: #ffffff;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Lists */
        ul, ol {
            margin-bottom: 1.2rem;
            padding-left: 25px;
        }

        li {
            margin-bottom: 0.7rem;
        }

        /* Sections */
        section {
            margin-bottom: 3rem;
            padding: 20px;
            border-radius: 5px;
            background-color: #2a2a2a; /* Slightly different background for sections */
        }

        /* Hero Section Specifics */
        #hero {
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('inline-font1_2') no-repeat center center/cover;
            padding: 60px 20px;
            border-radius: 8px;
            margin-bottom: 3rem;
        }

        #hero h1 {
            color: #ffffff;
            border-bottom: none;
        }

        #hero p {
            font-size: 1.3rem;
            color: #E0E0E0;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* Images */
        img {
            max-width: 100%; /* Make images responsive */
            height: auto;
            display: block; /* Remove extra space below image */
            margin: 30px auto 10px auto; /* Center image with margin */
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .image-description {
            text-align: center;
            font-size: 0.9rem;
            color: #AAAAAA;
            margin-bottom: 30px; /* Space after description */
        }

        /* FAQs Specific Styling */
        #faq .faq-item {
            margin-bottom: 1.5rem;
            padding: 15px;
            background-color: #333333;
            border-left: 4px solid #4CAF50;
            border-radius: 4px;
        }

        #faq .faq-item h3 {
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: #81C784;
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 3rem;
            padding: 20px;
            font-size: 0.9rem;
            color: #AAAAAA;
            border-top: 1px solid #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding-top: 0; /* Adjust if header becomes static */
            }
            
            main {
                margin: 20px auto;
                padding: 15px;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.7rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            p {
                font-size: 1rem;
            }

            #hero {
                padding: 40px 15px;
            }

            #hero p {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.2rem;
            }

            p {
                font-size: 0.95rem;
            }

             ul, ol {
                padding-left: 20px;
            }
        }

    