@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
html {
    scroll-behavior: smooth;
}
/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: lightslategray;
    color: #F4F6F6;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: whitesmoke;
}

h1 {
    font-size: 2.5em;
    text-align: center;
}

h2 {
    font-size: 2em;
    text-align: center;
}

h3 {
    font-size: 1.5em;
}

.gradient-transition-dark {
    background: linear-gradient(to bottom, #211A68, #8572AA); /* Gradient from dark to light */
    height: 80px; /* Adjust height as needed */
}
.gradient-transition-light {
    background: linear-gradient(to bottom, #8572AA, #211A68); /* Gradient from dark to light */
    height: 80px; /* Adjust height as needed */
}
.gradient-transition-footer {
    background: linear-gradient(to bottom, #211A68, #000); /* Gradient from dark to light */
    height: 80px; /* Adjust height as needed */
}
.gradient-transition-header {
    background: linear-gradient(to bottom left, #C2E9FB, #A1C4FD, #A1C4FD); /* Gradient from dark to light */
    height: 80px; /* Adjust height as needed */
}
.gradient-transition-headerbelow {
    background: linear-gradient(to bottom, #A1C4FD, #8572AA); /* Gradient from dark to light */
    height: 80px; /* Adjust height as needed */
}

                                                                        /* Navbar Styles */
#menu-toggle {
    display: none;
}
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 10px;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background 0.3s ease;
}

#navorder{
    color: black;
    font-weight: bold;
    background-color: #8572AA;
    color: white;

}

.navbar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .navbar ul {
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease, max-height 0.5s ease;
    }
    .navbar ul li {
        display: block;
        margin: 10px 0;
        padding: 10px 0;
    }
    #menu-toggle:checked + .menu-icon + ul {
        display: flex;
        opacity: 1;
        max-height: 500px;
    }
}

@media (min-width: 769px) {
    .navbar ul {
        display: flex !important;
        flex-direction: row;
        opacity: 1 !important;
        max-height: none !important;
    }
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

#menu-toggle:checked + .menu-icon + ul {
    animation: slideDown 0.5s forwards;
}

#menu-toggle:not(:checked) + .menu-icon + ul {
    animation: slideUp 0.5s forwards;
}

.hero-header {
    padding-top: 60px;
}

                                                                /* Header Section */
.hero-header,
.hero-header * {
    box-sizing: border-box;
}

.hero-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #FFFBFB, #A1C4FD, #C2E9FB);
    height: 100vh;
    width: 100%;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative; /* For positioning shapes */
    z-index: 1;
}

.logo-placeholder {
    margin-bottom: 50px;
    z-index: 2;
}

.logo-placeholder img {
    max-width: 500px; /* Increased size for the logo */
    height: auto;
}

.content-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    gap: 100px;
}

.content {
    flex: 1;
    text-align: center;
    padding: 20px;
    z-index: 3;
}

.content h1 {
    font-size: 3em;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 4;
}

.image-placeholder img {
    max-width: 70%; /* Decreased size for the image */
    max-height: 70%;
    border-radius: 30%;
}

.cta-button {
    background-color: #1B1464;
    color: white;
    padding: 15px 30px;
    font-size: 1em;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #662E91;
}

/* Decorative shapes */
.hero-header::before,
.hero-header::after,
.hero-header .circle-1,
.hero-header .circle-2,
.hero-header .curve-1,
.hero-header .curve-2,
.hero-header .curve-3 {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

/* Circle shape */
.hero-header::before {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 30%;
    left: 10%;
}

/* Larger circle shape */
.hero-header::after {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
}

/* Additional circle shape */
.hero-header .circle-1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 45%;
    left: 45%;
}

/* Curved line shapes */
.hero-header .curve-1 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 25%;
    background: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}

.hero-header .curve-2 {
    width: 200px;
    height: 100px;
    top: 20%;
    right: 10%;
    background: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
}

.hero-header .curve-3 {
    width: 150px;
    height: 50px;
    bottom: 15%;
    left: 15%;
    background: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(45deg);
}

@media (max-width: 1000px) {
    .content-row {
        flex-direction: column;
        align-items: center;
        gap: 0; /* Adjust gap as needed */
    }

    .image-placeholder {
        order: 2; /* Ensure the image comes after the text */
        margin-top: -30px;
    }

    .content {
        order: 1; /* Ensure the text comes before the image */
    }
    .cta-button{
        display: none;
    }
}

@media (max-width: 767px) {
    .content-row {
        flex-direction: column;
    align-items: center;
    }

    .content, .image-placeholder {
        padding: 10px;
        text-align: center;
    }

    .content h1 {
        font-size: 2em;
    }

    .logo-placeholder {
        margin-top: 30px; /* Add space above the logo */
    }

    .hero-header::before {
        top: 20%; /* Adjust circle position */
        left: 10%; /* Adjust circle position */
    }

    .hero-header::after {
        bottom: 10%; /* Adjust circle position */
        right: 10%; /* Adjust circle position */
    }

    .hero-header .circle-1 {
        top: 40%; /* Adjust additional circle position */
        left: 50%; /* Adjust additional circle position */
    }

    .hero-header .curve-1 {
        top: 50%; /* Adjust curve position */
        left: 30%; /* Adjust curve position */
    }

    .hero-header .curve-2 {
        top: 20%; /* Adjust curve position */
        right: 20%; /* Adjust curve position */
    }

    .hero-header .curve-3 {
        bottom: 5%; /* Adjust curve position */
        left: 20%; /* Adjust curve position */
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 10px;
    }

    .logo-placeholder {
        margin-top: 10em; /* Increase space above the logo */
        margin-bottom: 0;
    }

    .logo-placeholder img {
        max-width: 300px; /* Adjust the size as needed */
    }

    .content-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-placeholder{
        padding-top: 0;
        margin-top: -20px;
    }

    .content, .image-placeholder {
        
        text-align: center;
    }

    .content h1 {
        font-size: 1.5em;
    }

    .image-placeholder img {
        max-width: 90%; /* Adjust size to fit better on small screens */
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .hero-header::before {
        top: 15%; /* Adjust circle position */
        left: 5%; /* Adjust circle position */
    }

    .hero-header::after {
        bottom: 10%; /* Adjust circle position */
        right: 5%; /* Adjust circle position */
    }

    .hero-header .circle-1 {
        top: 60%; /* Adjust additional circle position */
        left: 10%; /* Adjust additional circle position */
    }

    .hero-header .curve-1 {
        top: 70%; /* Adjust curve position */
        left: 5%; /* Adjust curve position */
    }

    .hero-header .curve-2 {
        top: 30%; /* Adjust curve position */
        right: 15%; /* Adjust curve position */
    }

    .hero-header .curve-3 {
        bottom: 5%; /* Adjust curve position */
        left: 5%; /* Adjust curve position */
    }
}

@media (max-width: 385px) {
    .cta-button{
        display: none !important;
    }
    .content-row{
        gap: -30px;
    }
    .image-placeholder{
        margin-top: -50px;
    }
    .logo-placeholder{
        margin-top: 10em;
    }

}

/* Specific media query for Surface Duo */
@media (max-width: 540px) and (max-height: 720px) {
    .content-row {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Adjust gap as needed */
    }

    .logo-placeholder {
        margin-top: 150px; /* Increase space above the logo */
        margin-bottom: 0;
    }

    .image-placeholder img {
        max-width: 70%; /* Adjust size to fit better */
        max-height: 70%;
    }
}

/* Specific media query for iPad */
@media (min-width: 768px) and (max-width: 1000px) {
    .content-row {
        flex-direction: column;
        align-items: center;
        gap: 0; /* Adjust gap as needed */
    }

    .logo-placeholder {
        margin-top: 200px; /* Increase space above the logo */
        margin-bottom: 0;
    }

    .image-placeholder img {
        max-width: 75%; /* Adjust size to fit better */
        max-height: 75%;
        margin-top: -40px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 1000px) and (max-width: 1025px){
    .image-placeholder img{
        max-width: 100%;
    }

    .content-row{
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .logo-placeholder{
        margin-top: 30px;
        margin-bottom: 0;
    }
}


                                                            /* Services Section */
#services {
    padding: 20px 20px;
    background-color: #8572AA;
    text-align: center;
}
#guarantee{
    padding: 20px 20px;
    background-color: #211A68;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: lavenderblush;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: black;
}

.service-card p {
    font-size: 1em;
    color: black;
}

@media (max-width: 768px) {
    .service-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

                                                        /* Pricing Table Section */
.pricing-table {
    text-align: center;
    padding: 20px 20px;
    background-color: #211A68;
}

.pricing-table h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: whitesmoke;
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-options.short {
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure the cards have the same height */
}

.pricing-options.long {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.pricing-card {
    background: lavenderblush;
    padding: 20px;
    border: 1px solid black;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    color: #527191;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.custom {
    background-color: white;
    border: 1px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #527191;
}

.pricing-card h2,
.pricing-card h3,
.pricing-card h4,
.pricing-card ul,
.pricing-card ul li,
.pricing-card button {
    position: relative;
    z-index: 2; /* Ensure the text and button are above the pseudo-elements */
}

.pricing-card h2 {
    color: black;
    font-size: 2em;
}

.pricing-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: black;
}

.pricing-card h4 {
    font-size: 2em;
    margin: 10px 0;
    color: #527191;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 10px 0;
    color: black;
}

.pricing-card ul li.strikethrough {
    text-decoration: line-through;
    color: #aaa;
}

.pricing-card button {
    background-color: #8572AA;
    color: #F4F6F6;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.pricing-card button:hover {
    background-color: #1A1463;
    color: white;
}

/* Specific styles for the highlight card with animation */
.pricing-card.highlight {
    border: 3px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.pricing-card.highlight::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(180deg, transparent 25%, rgb(0, 183, 255), rgb(255, 48, 255), transparent 75%);
    animation: rotBGimg 6s linear infinite;
    transition: all 0.2s linear;
    z-index: 0; /* Ensure the pseudo-element is below the card content */
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pricing-card.highlight::after {
    content: '';
    position: absolute;
    background: whitesmoke;
    inset: 5px;
    border-radius: 10px;
    z-index: 1; /* Ensure the pseudo-element is below the card content */
}

@media (max-width: 1024px) {
    .pricing-options.long {
        flex-direction: wrap;
        flex-wrap: wrap;
        justify-content: center; /* Ensure cards are spaced properly */
    }
    
    .pricing-card {
        width: calc(40% - 20px); /* Adjust width for medium screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-options.short {
        flex-direction: column;
        align-items: center;
    }

    .pricing-options.long {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        width: calc(50% - 20px); /* Adjust width for smaller screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        width: 80%; /* Full width for small screens */
    }
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: block;
    cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: whitesmoke;
    text-align: center;
    border-radius: 5px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when hovering over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.info-icon {
    margin-left: 5px;
    font-size: 1.0em;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    color: #555;
    background-color: lightgray;
    border-radius: 50%;
    padding-left: 5px;
    padding-right: 5px;
}

.tooltip:hover .info-icon {
    color: #000;
}
                                                        /* General slideshow styles */
.portfolio-slideshow {
    padding: 20px 20px;
    background-color: #8572AA;
    text-align: center;
    overflow: hidden;
}

.portfolio-slideshow h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: whitesmoke;
}

/* Owl carousel styles */
.owl-carousel .item {
    position: relative;
    margin: 10px;
}

.owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit:scale-down;
    border-radius: 10px;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 2em;
    margin: 5px;
    padding: 4px 7px;
    background: #343a40;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #868e96;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #ddd;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease 0s;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #343a40;
}

/* Zoom icon overlay styles */
.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 2em;
    display: none;
    pointer-events: none;
}

.owl-carousel .item:hover .zoom-icon {
    display: block;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.lightbox-modal .close:hover,
.lightbox-modal .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-modal .lightbox-content {
    max-width: 100%;
    max-height: 80%;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .portfolio-items .item {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .lightbox-modal .lightbox-content {
        transform: rotate(90deg); /* Rotate image for mobile devices */
    }
}


                                                                /* Contact section */
.contact-section {
    padding: 20px 20px;
    background-color: #8572AA;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-card {
    background: lavenderblush;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 700px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #000;
}

.contact-details p {
    font-size: 1em;
    margin: 10px 0;
}

.contact-details a {
    color: black;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1a1463;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-card {
        width: calc(90% - 20px);
    }
}

@media (max-width: 480px) {
    .contact-card {
        width: calc(100% - 20px);
    }
}
                                                            /* Developer Profiles Styles */
.developers {
    text-align: center;
    padding: 20px 20px;
    background-color: #211A68;
    color: whitesmoke;
}

.developers h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: whitesmoke;
}

.developer-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.developer-card {
    position: relative;
    width: 400px;
    background: lavenderblush;
    border: 2px solid black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: black;
}

.developer-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    display: block;
}

.developer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.description {
    padding: 10px;
    text-align: center;
}

.description h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: black;
}

.description p {
    font-size: 0.9em;
    color: black;
}

.developer-intro-box {
    background: lavenderblush;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 20px auto 0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.developer-intro-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.developer-intro {
    font-size: 1.2em;
    color: black;
}

@media (max-width: 768px) {
    .developer-cards {
        flex-direction: column;
        align-items: center;
    }
    .developer-card {
        width: 250px;
    }
    .developer-intro {
        font-size: 1em;
    }
    .developer-intro-box {
        margin-top: 20px;
    }
}

@media (max-width: 375px) {
    .developer-card {
        width: 200px;
    }
}

                                                                /* Footer Styles */
footer {
    background: black;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-top: 0;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #8572AA;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #DFD9E8;
    text-decoration: underline;
}
                                                                    /*cookies*/
#cookieConsent {
    background-color: rgba(20, 20, 20, 0.8);
    min-height: 26px;
    font-size: 14px;
    color: white;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none; /* Initially hidden */
}

#cookieConsent a {
    color: #ffc107;
    text-decoration: none;
}

#cookieConsent a:hover {
    text-decoration: underline;
}

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 10px 10px;
    font-weight: bold;
    font-size: 300%;
}

#acceptCookie {
    background-color: #ffc107;
    color: black;
    border: 0;
    padding: 10px 10px;
    margin-left: 10px;
    cursor: pointer;
}
