        /* Reset some default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Body and general layout */
        body {
            font-family: 'Arial', sans-serif;
            background-color: #016660;
            
        }

        .outer {
            margin: 0 auto;
            background-color: lightslategray;
    
        }

        /* inner for background color */
        .inner {
            width: 80%;
            margin: 0 auto;
            background-color: lightslategray;
    
        }

        .right {
            margin-left: auto;  /* Pushes the div to the right */
            margin-right: 5%;    /* Ensures it stays against the right edge */     
            background-color: #016660;

        }

        /* inner for background color */
        .left {
            margin-right: auto;  /* Pushes the div to the right */
            margin-left: 5%;    /* Ensures it stays against the right edge */     
           background-color: lightslategray;

        }

        .container {    /* container for the blog posts */
            width: 90%;
            margin: auto;
            color: #ffffff;
            background: #016660;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .iframe-container { /* iframe-container for displaying the blog posts */
            display: flex;
            justify-content: center; /* Centers horizontally */
            align-items: center; /* Centers vertically */
            height: 70vh;
            color: #ffffff;            
            background-color: #016660; /* Ensures full-page background */
            
                        
        }

        .iframe-content body, 
        .iframe-content h1, 
        .iframe-content h2,
        .iframe-content h3, 
        .iframe-content p {
            color: #ffffff;
            font-family: Arial, sans-serif;
        }

        iframe { /* iframe for displaying the blog posts */
            width: 80%; /* Adjust as needed */
            height: 600px; /* Adjust as needed */
            border: none;
            color: #ffffff
            background-color: transparent; /* Make iframe background transparent */
            
            }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 30vh;
            background: url('../graphics/ficsgroup.logo.jpg') left/contain no-repeat #016660;/* Replace with actual image */
            background-position: left;
            color: rgb(201, 202, 202);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-overlay {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .hero h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 10px 20px;
            background-color: #1d5155;
            color: white;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2em;
        }
       
        /* Brand Voice Section */
        .brand-voice {
            padding: 60px 20px;
            text-align: center;
            background-color: #2b7f79;
        }

        .brand-voice p {
            font-size: 1.1em;
        }


        .brand-voice h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .brand-voice h3 {
            font-size: 1em;
            margin-bottom: 15px;
        }

        .brand-voice p {
            font-size: 1.1em;
        }

        /* Navigation */
        .nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background-color: #333;
            padding: 15px;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1em;
        }

        .nav a:hover {
            text-decoration: underline;
        }

        /* Coming Soon Section */
        .coming-soon {
            padding: 60px 20px;
            background-color: #016660;
            text-align: center;
        }

        .coming-soon h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: white;
        }
        .coming-soon p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: rgb(201, 202, 202); 
        }


        /* Our Divisions Section */
        .divisions {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 60px 20px;
            text-align: center;
            color: rgb(201, 202, 202);
            background-color: #2b7f79;
        }

        .division-card {
            background-color: #016660;
            padding: 30px;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .division-card:hover {
            background-color: #3f868b;
        }

        .division-card h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .division-card p {
            font-size: 1.1em;
        }

        /* Our Blogs Section */
        .blog {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 60px 20px;
            text-align: center;
            color: rgb(201, 202, 202);
            background-color: #016660;
        }

        .blog-card {
            background-color: #2b7f79;
            padding: 30px;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .blog-card:hover {
            background-color: #3f868b;
        }

        .blog-card p {
            font-size: 1.1em;
        }
        .blog h1 {
            font-size: 3.0em;
            margin-bottom: 15px;
            color: #ffffff;
        }
        .blog h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: #ffffff;
        }
        .blog p {
            font-size: 1.1em;
            color: #ffffff
        }

        .blog-card h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .outer-blog {
            margin: 0 auto;
            background-color: #016660
    
        }

        /* inner for background color */
        .inner-blog {
            width: 90%;
            margin: 0 auto;
            background-color: #2b7f79
            
        }

        /* About Us Section */
        .about-us {
            padding: 60px 20px;
            text-align: center;
            color: white;
            background-color: #016660;
        }

        .about-us h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        /* Contact Us Section */
        .contact-us {
            padding: 60px 20px;
            background-color: #2b7f79;
            text-align: center;
        }

        .contact-us form input, .contact-us form textarea {
            width: 50%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-color: #016660;
            border-radius: 5px;
            background-color: #2b7f79;
            
        }

        .contact-us form button {
            padding: 10px 20px;
            background-color: #016660;
            color: white;
            border: none;
            border-radius: 5px;
        }

        /* Our Bookings Section */
        .bookings {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 60px 20px;
            text-align: center;
            color: rgb(201, 202, 202);
            background-color: #2b7f79;
        }

        .booking-card {
            background-color: #016660;
            color: rgb(201, 202, 202);
            padding: 30px;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .booking-card:hover {
            background-color: #3f868b;
            color: rgb(201, 202, 202);            
        }

        .booking-card h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .booking-card p {
            font-size: 1.1em;
            color: rgb(201, 202, 202);            
        }

        /* Footer */
        .footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .footer a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .divisions {
                grid-template-columns: 1fr;
            }
        }
    