

    body {
        margin: 0;
        font-family: Arial, sans-serif;
        color: #333;
        background-color: #fff;
    }
    
    header {
        background-color: #2782e3;
        color: #fff;
        padding: 1rem 0;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    header img {
        max-width: 150px;
        height: 100px;
        background-color: #ddd;
        border-radius: 50%;
    }
    
    header h1 {
        margin: 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Header styling */
    header {
        background-color: #007BFF;
        padding: 1rem 0;
        color: white;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    header img {
        max-height: 50px;
    }
    
    header h1 {
        margin: 0;
    }
    
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }
    
    nav ul li {
        margin-left: 20px;
    }
    
    nav ul li a {
        color: white;
        text-decoration: none;
    }
    .hamburger {
        display: none;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
    
    .intro-section {
        background-color: #f5f0f0;
        padding: 2rem 1rem;
        text-align: center;
        margin-top: 20px; /* Adjust to account for fixed header height */
    }
    .intro-section h2, .about-section h2, .contact-section h2, .clients-section h2, .video-section h2, .brands-section h2, .websites-section h2{
        font-family: Courier;
    }
    .intro-sectiondg {
        background-color: #f5f0f0;
        padding: 2rem 1rem;
        text-align: center;
        margin-top: 100px; /* Adjust to account for fixed header height */
    }
    
    .intro-section .container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .intro-section img {
        max-width: 270px;
        margin-bottom: 1rem;
    }
    
    .intro-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .intro-section p {
        line-height: 1.6;
    }
     /* Service section styling */
     .service-section {
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        border-radius: 10px;
        width: calc(50% - 2rem);
        margin: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    .link-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: calc(85% - 1rem);
        margin-bottom: 1rem;
        padding: 1rem;
        text-align: center;
    }
    .techinfo {
        background-color: #f7f7f7;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .techinfo .container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .techinfo p {
        line-height: 1.6;
    }
    .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 2rem 1rem;
        
    }
    
    .section {
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        border-radius: 10px;
        width: calc(50% - 2rem);
        margin: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    
    .service-section h2 {
        background-color: #007BFF;
        color: #fff;
        padding: 1rem;
        margin: 0;
        border-bottom: 1px solid #ddd;
    }
    
    .service-section .image {
        position: relative;
        overflow: hidden;
        height: 150px; /* Adjust height as needed */
    }
    
    .service-section .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        
    }
    
    .service-section .content {
        padding: 1rem;
    }
    .content a{
        text-decoration: none;
    }
    .service-section p {
        margin: 1rem 0;
    }
    .service-section h2 {
        font-family: Courier;
        font-weight: 400 light;
    }
    .service-btn {
        background-color: #007BFF;
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .service-btn:hover {
        background-color: #0056b3;
    }
    
    .image {
        width: 100%;
    }
    .image {
        position: relative;
        overflow: hidden;
        max-height: 450px; /* Adjust height as needed */
    }
    .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }
    .about-section {
        padding-top: 150px;
    }
    .about-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .about-section p {
        margin-bottom: 1rem;
        line-height: 1.6;
        text-align: justify;
    }
    p{
        font-family: Raleway;
    }
    h1, h2 {
       font-family: Raleway;
       font-weight: 200 lighter; 
    }
    footer {
        width: 100%;
        background-color: #007BFF;
        color: #fff;
        padding: 1rem 0;
        text-align: center;
    }
    
    footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    footer .social-icons {
        margin-bottom: 1rem;
    }
    
    footer .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        margin: 0 0.5rem;
        text-decoration: none;
    }
    
    footer .contact-info {
        margin-bottom: 1rem;
    }
    
    footer .contact-info p {
        margin: 0.5rem 0;
    }
    
    footer .contact-info i {
        margin-right: 0.5rem;
    }
    .links-container {
        padding: 2rem 1rem;
        background-color: #f1f1f1;
    }
    
    .link-section {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .link-section h2 {
        color: #007BFF;
        margin-bottom: 2rem;
    }
    
    .links-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .link-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: calc(50% - 1rem);
        margin-bottom: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .link-card img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .link-card h3 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .link-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .link-btn {
        display: inline-block;
        padding: 0.5rem 1rem;
        color: #fff;
        background-color: #007BFF;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .link-btn:hover {
        background-color: #0056b3;
    }
    .gallery-container {
        padding: 2rem 0;
    }
    
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .gallery-item img:hover {
        transform: scale(1.1);
    }
    
    .clients-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .clients-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .clients-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .client-item img {
        max-width: 100px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .client-item img:hover {
        transform: scale(1.1);
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .video-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .video-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .video-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .video-item {
        flex: 1 1 300px;
        max-width: 600px;
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
    }
    
    .video-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .brands-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .brands-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .brands-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .brand-item {
        flex: 1 1 150px;
        max-width: 150px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .brand-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }
    
    .brand-item:hover {
        transform: scale(1.1);
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .websites-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .websites-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .websites-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .website-item {
        width: 100%;
        max-width: 350px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .website-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }
    
    .website-item:hover {
        transform: scale(1.1);
    }
    
    .blog-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
        margin: 0 auto;
        width: calc(50% - 2rem);;
    }
    
    .blog-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .blog-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .blog-post {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    
    .blog-post h3 {
        margin-top: 0;
    }
    
    .blog-post h3 a {
        color: #007BFF;
        text-decoration: none;
    }
    
    .blog-post p {
        margin: 0.5rem 0 1rem;
    }
    
    .read-more {
        color: #007BFF;
        text-decoration: none;
        font-weight: bold;
    }
    /* Container for content */
    .container {
        max-width: 1200px;
        margin: 0 auto; /* Center content horizontally */
        padding: 0 15px;
    }
    
    /* Styling for blog post */
    .blog-post {
        margin: 2rem 0;
        padding: 1rem;
        padding-top: 10rem;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }
    
    .post-title {
        margin-top: 0;
        color: #007BFF;
    }
    
    .post-meta {
        color: #888;
        margin-bottom: 1rem;
    }
    
    .post-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .post-quote {
        font-style: italic;
        margin: 1rem 0;
        padding: 0.5rem;
        background-color: #f0f0f0;
        border-left: 4px solid #007BFF;
    }
    /* Styling for contact form */
    .contact-section {
        padding: 2rem 0;
        text-align: center;
        width: 60%;
        display: flex;
        margin: 0 auto;
    }
    
    .contact-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .contact-section p {
        margin-bottom: 2rem;
    }
    
    form label {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    form input,
    form select,
    form textarea {
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    form button {
        background-color: #007BFF;
        color: white;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    form button:hover {
        background-color: #0056b3;
    }
    .examples-section {
        padding: 20px;
        background: #f9f9f9;
        text-align: center;
    }
    
    .examples-section h2 {
        font-family: 'Courier Prime', monospace;
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .example {
        margin-bottom: 30px;
    }
    
    .example h3 {
        font-family: 'Raleway', sans-serif;
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    .example p {
        font-family: 'Raleway', sans-serif;
        font-size: 1em;
        color: #555;
    }
    /* WhatsApp Icon Styling */
    .whatsapp-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: none;
    }

    .whatsapp-icon img {
        width: 50px;
        height: 50px;
    }
    .mission-vision-section {
        padding: 50px 0;
        background-color: #f7f7f7;
        text-align: center;
    }
    
    .mission-vision-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .mission-vision-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .mission-vision-content h2 {
        font-family: Courier;
        font-size: 2em;
        margin-bottom: 20px;
        color: #007bff; /* Primary blue color */
    }
    
    .mission-vision-content .mission, 
    .mission-vision-content .vision {
        margin-bottom: 20px;
    }
    
    .mission-vision-content h3 {
        font-family: Courier;
        font-size: 1.5em;
        margin-bottom: 10px;
        color: #007bff; /* Primary blue color */
    }
    
    .mission-vision-content p {
        font-size: 1em;
        color: #333;
        line-height: 1.6;
    }
    /* terms and conditions button */
    .terms-section {
        padding: 20px 0;
        text-align: center;
        background-color: #f7f7f7;
    }
    
    .terms-button {
        background-color: #007bff; /* Primary blue color */
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .terms-button:hover {
        background-color: #0056b3;
    }
    /* Terms and Conditions Page */
    main {
        padding: 20px 0;
    }

    main .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    main h2 {
        font-family: Courier;
        font-size: 1.3em;
        color: #007bff; /* Primary blue color */
        margin-bottom: 20px;
        padding-top: 60px;
    }

    main p {
        font-size: 1em;
        color: #333;
        line-height: 1.6;
    }
    .blog-post h3, .blog-container h1 {
        font-family: Courier;
    }
    .blog-container a {
        text-decoration: none;
        color: #007BFF;
    }

    @media (max-width: 1024px) {
        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #007BFF;
        }
    
        nav ul.show {
            display: flex;
        }
    
        nav ul li {
            margin: 0;
            text-align: center;
            padding: 1rem 0;
        }
    
        .hamburger {
            display: block;
        }
         /* Service section styling */
        .service-section {
            background-color: #f7f7f7;
            border: 1px solid #ddd;
            border-radius: 10px;
            width: calc(60% - 2rem);
            margin: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            overflow: hidden;
            position: relative;
        }
        .link-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            width: calc(85% - 1rem);
            margin-bottom: 1rem;
            padding: 1rem;
            text-align: center;
        }
        .blog-section {
            padding: 2rem 0;
            background-color: #f9f9f9;
            text-align: center;
            margin: 0 auto;
        }
        
        .blog-section h2 {
            color: #007BFF;
            margin-bottom: 1rem;
        }
        
        .blog-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .blog-post {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }
        
        .blog-post h3 {
            margin-top: 0;
        }
        
        .blog-post h3 a {
            color: #007BFF;
            text-decoration: none;
        }
        
        .blog-post p {
            margin: 0.5rem 0 1rem;
        }
        
        .read-more {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }
    }
    @media (max-width: 768px) {
        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #007BFF;
        }
    
        nav ul.show {
            display: flex;
        }
    
        nav ul li {
            margin: 0;
            text-align: center;
            padding: 1rem 0;
        }
    
        .hamburger {
            display: block;
        }
         /* General section styling */
    .contact-section, .intro-section, .service-section, .websites-section {
        padding: 2rem 0;
        text-align: center;
    }
    /* Service section styling */
    .service-section {
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        border-radius: 10px;
        width: calc(60% - 2rem);
        margin: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    .link-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: calc(85% - 1rem);
        margin-bottom: 1rem;
        padding: 1rem;
        text-align: center;
    }
    .whatsapp-icon {
        display: block;
    }.blog-container {
        width: calc(100% - 2rem);;
    }
    .blog-container h1 {
        padding-top: 50px;
    }
    .blog-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
        margin: 0 auto;
    }
    
    .blog-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .blog-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .blog-post {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }
    
    .blog-post h3 {
        margin-top: 0;
    }
    
    .blog-post h3 a {
        color: #007BFF;
        text-decoration: none;
    }
    
    .blog-post p {
        margin: 0.5rem 0 1rem;
    }
    
    .read-more {
        color: #007BFF;
        text-decoration: none;
        font-weight: bold;
    }
}
    @media (max-width: 425px) {
        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #007bff;
        }
    
        nav ul.show {
            display: flex;
        }
    
        nav ul li {
            margin: 0;
            text-align: center;
            padding: 1rem 0;
        }
    
        .hamburger {
            display: block;
        }
        /* Service section styling */
        .service-section {
            background-color: #f7f7f7;
            border: 1px solid #ddd;
            border-radius: 10px;
            width: calc(100% - 2rem);
            margin: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        .service-section h2 {
            color: #f0f2f4;
            margin-top: 0;
        }

        .service-section p {
            padding: 0 1rem;
        }

        .service-section .button {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .service-section .button:hover {
            background-color: #0056b3;
        }

        /* Flexbox layout for service sections */
        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        /* Styling for contact form */
        .contact-section {
            padding: 2rem 0;
            text-align: center;
            width: 85%;
            display: flex;
            margin: 0 auto;
        }
        .link-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            width: calc(85% - 1rem);
            margin-bottom: 1rem;
            padding: 1rem;
            text-align: center;
        }
        .whatsapp-icon {
            display: block;
        }
        iframe {
            width: calc(120% - 2rem);
        }
        .blog-section {
            padding: 2rem 0;
            background-color: #f9f9f9;
            text-align: center;
            margin: 0 auto;
            width: calc(90% - 2rem);;
        }
        
        .blog-section h2 {
            color: #007BFF;
            margin-bottom: 1rem;
        }
        
        .blog-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .blog-post {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-width: 425px;
            width: 100%;
            margin: 0 auto;
        }
        .blog-container {
            width: calc(100% - 2rem);;
        }
        .blog-container h1 {
            padding-top: 20px;
        }
        
        .blog-post h3 {
            margin-top: 0;
        }
        
        .blog-post h3 a {
            color: #007BFF;
            text-decoration: none;
        }
        
        .blog-post p {
            margin: 0.5rem 0 1rem;
        }
        
        .read-more {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }

}
    @media (max-width: 375px){
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #007BFF;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }

    .hamburger {
        display: block;
    }
    /* Service section styling */
    .service-section {
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        border-radius: 10px;
        width: calc(100% - 2rem);
        margin: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        overflow: hidden;
        position: relative;
    }

    .service-section h2 {
        color: #eef1f4;
        margin-top: 0;
    }

    .service-section p {
        padding: 0 1rem;
    }

    .service-section .button {
        display: inline-block;
        margin-top: 1rem;
        padding: 0.5rem 1rem;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .service-section .button:hover {
        background-color: #0056b3;
    }

    /* Flexbox layout for service sections */
    .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    /* Styling for contact form */
    .contact-section {
        padding: 2rem 0;
        text-align: center;
        width: 85%;
        display: flex;
        margin: 0 auto;
    }
     /* General section styling */
     .contact-section, .intro-section, .service-section, .websites-section {
        padding: 2rem 0;
        text-align: center;
    }
    .image {
        position: relative;
        overflow: hidden;
        max-height: 375px; /* Adjust height as needed */
    }
    /* Container for content */
    .container {
        max-width: 375px;
        margin: 0 auto; /* Center content horizontally */
        padding: 0 15px;
    }
    .blog-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    .blog-post {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-width: 375px;
        width: 100%;
       margin: 0 auto;
    }
    .blog-container {
        width: calc(120% - 2rem);;
    }
    .blog-container h1 {
        padding-top: 40px;
    }
    .link-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        width: calc(85% - 1rem);
        margin-bottom: 1rem;
        padding: 1rem;
        text-align: center;
    }
    .whatsapp-icon {
        display: block;
    }
    iframe {
        width: calc(120% - 2rem);
    }
    .blog-section {
        padding: 2rem 0;
        background-color: #f9f9f9;
        text-align: center;
        margin: 0 auto;
        width: calc(90% - 2rem);;
    }
    
    .blog-section h2 {
        color: #007BFF;
        margin-bottom: 1rem;
    }
    
    .blog-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .blog-post {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
    }
    
    .blog-post h3 {
        margin-top: 0;
    }
    
    .blog-post h3 a {
        color: #007BFF;
        text-decoration: none;
    }
    
    .blog-post p {
        margin: 0.5rem 0 1rem;
    }
    
    .read-more {
        color: #007BFF;
        text-decoration: none;
        font-weight: bold;
    }
    
}
    @media (max-width: 320px) {
        iframe {
            width: calc(120% - 2rem);
        }
        .blog-container {
            width: calc(100% - 2rem);;
        }
        .blog-container h1 {
            padding-top: 20px;
        }
        .blog-section {
            padding: 2rem 0;
            background-color: #f9f9f9;
            text-align: center;
            margin: 0 auto;
            width: calc(90% - 2rem);;
        }
        
        .blog-section h2 {
            color: #007BFF;
            margin-bottom: 1rem;
        }
        
        .blog-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .blog-post {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-width: 320px;
            width: 100%;
            margin: 0 auto;
        }
        
        .blog-post h3 {
            margin-top: 0;
        }
        
        .blog-post h3 a {
            color: #007BFF;
            text-decoration: none;
        }
        
        .blog-post p {
            margin: 0.5rem 0 1rem;
        }
        
        .read-more {
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }
}