body {
    font-family: "Gill Sans MT", sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #0077ff, #001f8b);
    color: white;
    padding-top: 2%; 
    text-align: center;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
} 

footer {
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
    padding: 1%;
}

@media (max-width: 1590px) {
    .username{
        display:none;    
    }
    }

header {
    background: transparent;
    color: transparent;
    align-items: center;
    z-index: 1000;
}

.promo-banner {
    background-color: #ff9800;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
body {
    padding-top: 60px;
}

header .container {
    align-items: center;
    justify-content: space-between;
    padding: 0 1%;
    margin-top: 40px;
}

header .logo {
    margin-right: auto;
}

.logo {
    margin-left: -80%;
}

@media(min-width:1450px){
    .logo {
        margin-left: -60%;
    }
}

.logo {
    position: absolute;
    top: 7%;
}


header nav {
    flex-grow: 1;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: inline-flex; 
    margin-top: 1em;
    padding: 0;
    justify-content: center;
}

header nav ul li {
    margin: 0 1em;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 1em;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 0.5em;
    position: relative; 
}

header nav ul li a:hover {
    color: #0090ff; 
    border-radius: 0.5em;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #007BFF;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}



header .logo-image {
    width: 12%;
    height: auto;
}

html, body {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}



.account-section {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: center;
    gap: 1em; 
    margin-top: 0.5em;
}

.account-section img {
    width: 24px;
    height: auto;
}

.account-section button,
.account-section a {
    font-size: 1em;
    text-decoration: none;
    background: none;
    cursor: pointer;
    color: #ffffff;
}

.account-section button:hover,
.account-section a:hover {
    color: white;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9998;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    width: 25px;
    z-index : 9999;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    width: 25px;
    z-index : 9999;
}

@media (max-width: 1075px) {
    .hamburger {
        display: flex;
        transform:translateY(-60px);
    }
    
    .banner{
        transform:translateY(-70px);
    }
    


    nav.mobile-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        justify-content: flex-start; 
        align-items: center;
        z-index: 9997;
        padding-top: 60px;
        overflow-y: auto;
    }

    nav.mobile-menu.active {
        display: flex;
    }

    body.no-scroll {
        overflow: hidden;
        width: 100vw;
    }

    nav.mobile-menu ul {
        list-style: none;
        text-align: center;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    nav.mobile-menu ul li {
        margin: 1em 0;
    }

    nav.mobile-menu ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.5em;
    }

    .account-section {
        display: none;
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        margin-top: 2em;
        width: 100%;
    }

    .account-section.active {
    display: flex; 
    transform: translateY(2px);
    transform: translateX(-50px);
}


    .account-section button {
        background-color: #333;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 1.2em;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .account-section button:hover {
        background-color: #555;
    }
}




@media (max-width: 511px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 1em;
    }

    header nav ul li {
        margin: 0.5em 0;
    }

    header .logo-image {
        width: 10%;
    }

    .account-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1em 0;
        gap: 0.5em;
		margin-top: 1em;
    }

    .account-section img {
        width: 20px; 
    }

    .account-section button,
    .account-section a {
        font-size: 0.9em;
		margin-top: 1em;
    }

    #username-display {
        font-size: 0.9em;
		margin-top: 0.6em;
    }

    body {
        padding-top: 5%;
        font-size: 14px;
    }


    header nav ul {
        margin-top: 1em;
        padding: 0;
    }

    header nav ul li a {
        font-size: 1em; 
        padding: 0.8em;
    }

    .account-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
	    padding: 0.3em 0.1em;
		margin-top: 1em;
    }

    .account-section img {
        width: 18px;
    }

    .account-section button,
    .account-section a {
        font-size: 0.8em;
		padding: 0.3em 0.1em;
		margin-top: 1em;
		margin-right: 4em;
    }

    #login-button, #logout-button {
        font-size: 0.7em;
        padding: 0.3em 0.1em;
		margin-top: 0.8em;
		margin-right: 1em;
        transform:translateY(-4%);
    }

    #username-display {
        font-size: 0.8em;
		padding: 0.3em 0.1em;
		margin-top: 1em;
    }
	
    .cart-icon #cart-count {
        font-size: 0.7em;
        top: -5px;
        right: -5px;
    }
}


@media (max-width: 1075px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header .logo-image {
        width: 17%;
        display: block;
        margin: 0 auto !important;
    }

    .logo {
        position: static !important;
        margin-left: 0 !important;
    }
    

    header nav ul {
        flex-direction: column;
        margin-top: 1em;
    }

    header nav ul li {
        margin: 0.5em 0;
    }


    body {
        padding-top: 5%;
        font-size: 14px;
    }

    header nav ul {
        margin-top: 1em;
        padding: 0;
    }

    header nav ul li a {
        font-size: 1em; 
        padding: 0.8em;
    }

    .account-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
	    padding: 0.3em 0.1em;
		margin-top: 4.9em;
    }

    .account-section img {
        width: 18px;
    }

    .account-section button,
    .account-section a {
        font-size: 0.8em;
		padding: 0.3em 0.1em;
		margin-top: 4.9em;
		margin-right: 4em;
    }

    #login-button, #logout-button {
        font-size: 0.7em;
        padding: 0.3em 0.1em;
		margin-top: 4.9em;
		margin-right: 1em;
    }

    #username-display {
        font-size: 0.8em;
		padding: 0.3em 0.1em;
		margin-top: 4.9em;
    }
	
    .cart-icon #cart-count {
        font-size: 0.7em;
        top: -5px;
        right: -5px;
    }
}

.cta {
    background: #d9d9d9;
    color: #0090ff;
    padding: 1% 2%;
    border-radius: 0.5em;
    text-decoration: none;
    margin-right: 2%;
}

.hero {
    height: 100vh;
    position: relative;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fond.jpg') no-repeat center center/cover;
    filter: grayscale(100%) blur(5px);
    z-index: 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1, .hero p, .hero .btn-primary {
    position: relative;
    z-index: 2;
}

.separator {
    height: 4px; /* Hauteur de la barre */
    background-color: white; /* Couleur bleue */
    margin: 40px 0; /* Espacement vertical autour de la barre */
    border-radius: 2px; /* Coins arrondis */
    width: 10%; /* Largeur relative à la section */
    margin-left: auto;
    margin-right: auto;}

#services {
    padding: 4% 2%;
    background: transparent;
	display: flex;
    flex-direction: column;
    align-items: center;
}


.services-container {
    justify-content: center;
    max-width: 62.5%;
    gap: 2%;
}

.service-item i {
    font-size: 3rem;
}

.service-item h3 {
    margin-top: 2%;
    font-size: 2rem;
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
}

.service-detail ul li {
    margin: 1% 0;
}

#newsletter .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 8%);
    text-align: center;
}

.newsletter-detail ul {
    list-style: none;
    padding-left: 0;
}

.newsletter-detail ul li {
    margin: 1% 0;
}

#contact {
    padding: 4% 2%;
    background: transparent;
}

#contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 8%);
    text-align: center;
}

.btn-primary {
    background-color: #007BFF;
    color: #fff;
    padding: 1% 2%;
    border: none;
    border-radius: 0.5em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0078d5;
}

.service-box {
    background-color: #007BFF;
    border: 1px solid #ddd;
    border-radius: 1em;
    padding: 2%;
    width: 30%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h2 {
    color: #333;
    margin-bottom: 2%;
    font-weight: bold;
}

.service-box p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10%;
}

.newsletter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 50px;
}

.newsletter-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 1em;
    padding: 2%;
    width: 50%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.newsletter-box:hover {
    transform: translateY(-5px);
}

.newsletter-box h2 {
    color: #333;
    margin-bottom: 0.9%;
	font-weight: bold;
}

h2{
	color: #ffffff;
    margin-bottom: 0.9%;
	font-weight: bold;
	font-size : 30px
}
	
.newsletter-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 1.4%;
}

.btn-quote {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.92% 1.4%;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #0056b3;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7.5%;
    width: auto;
}

.loader {
    border: 0.8% solid #f3f3f3; 
    border-top: 0.8% solid #0078d5;
    border-right: 0.8% solid #0056b3;
    border-bottom: 0.8% solid #6cb9f5;
    border-radius: 0.8%;
    width: 3.1%;
    height: 5.5%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loading-screen p {
    margin-top: 1.4%;
    font-size: 18px;
    color: #0056b3;
    font-weight: bold;
}

body.loading {
    overflow: hidden;
}

.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-container h1 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.form-container p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

.form-group input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease-in-out;
}

.form-group input:focus {
    border-color: #0078d5;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 120, 213, 0.2);
}

.recaptcha-container {
    text-align: center;
    margin-top: 20px;
	display : flex;
	justify-content: center;
    align-items: center;
}

.btn-submit {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078d5;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: #0056b3;
}

button {
    margin-top: 1.8%;
    padding: 0.9% 1.8%;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.next-btn, .prev-btn, .submit-btn {
    margin: 0.9%;
}

.swiper-container {
    width: 100%;
    height: 57% ;
    margin-top: 1em;
	position: relative; 
	overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
	flex-shrink: 0;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper2-container {
    width: 100%;
    height: 100%;
    margin-top: 1em;
	position: relative; 
	overflow: hidden;
}

.swiper2-slide img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
	flex-shrink: 0;
}

#3d-viewer {
    width: 100%;
    height: 500px;
    background-color: #000;
}

.account-icon {
    position: absolute;
    top: 5.5em;
    right: 17em;
    width: 30px; 
}

.account-icon img {
    width: 100%;
    height: auto;
}

.cart-icon {
    position: absolute;
    top: 5.5em;
    right: 12.7em;
    width: 30px;
}

.cart-icon img {
    width: 100%;
    height: auto;
}

#slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 90%;
    object-fit: cover; 
}

.slide.active {
    opacity: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 2rem;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.slide.active .text-overlay {
    opacity: 1;
    transform: translate(-50%, -50%);
	font-size: 1.7rem;
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 8%;
    max-height: 300px;
    object-fit: cover; 

}


.service-item {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.03); 
}

.service-item h3 {
    margin-top: 10px;
    font-size: 1.4em;
    color: #333;
}

.service-item p {
    margin: 15px 0;
    color: #555;
}

.service-item .btn-primary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.service-item .btn-primary:hover {
    background-color: #0056b3;
}

.account-section {
    display: flex;
    align-items: center;
	height : 100%;
    gap: 1em;
}

.cart-icon img, .account-icon img {
    width: 30px;
    height: 30px;
}

.username {
    font-weight: bold;
    color: #333;
    font-size: 16px;
	position: absolute;
    top: 6em;
    right: 23em;
}

#login-button:hover, #logout-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#login-button, #logout-button {
	padding : 0.5em 1em;
	margin-left:auto;
    font-size: 1em;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	font-weight: bold;
}

#login-button {
    position: absolute;
    top: 3.2em;
    right: 2em;
}

#logout-button {
    position: absolute;
    top: 3.4em;
    right: 2em;
}

.shop-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.product p {
    color: #777;
    font-size: 1rem;
    margin: 5px 0;
}

.product button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.product button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.cart-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.cart-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-item span {
    font-size: 1rem;
    color: #333;
}

.cart-total-section {
    background-color: #f8f9fa;
    border-top: 2px solid black;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.cart-total-section button {
    background-color: transparent;
    color: black;
    border:  2px solid black;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
}

.cart-total-section p {
    color: black;
}

.cart-total-section button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f44336;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 5px;
    border-radius: 50%;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-control button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 25px;
    height: 25px;
	align-items: center;
}

.quantity-control button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

#devis{
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 12px;
    font-size: 1.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    
}

#devis:hover{
background-color: rgba(0, 0, 0, 0.2);
}


.checkout-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

#checkout {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}

h3 {
    color: #333;
    }

#cart-items {
    margin-bottom: 20px;
    }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    }

.cart-item span, .cart-total-section {
    font-size: 1.1em;
    }

#checkout-form {
    display: grid;
    gap: 15px;
}

input[type="text"], input[type="email"], input[type="number"], select {
            width: 100%;
            padding: 10px;
            font-size: 1em;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

.cart-total-section {
            font-weight: bold;
            margin-bottom: 20px;
        }

button {
            background-color: transparent;
            color: #fff;
            border: 2px solid white;
            padding: 12px;
            font-size: 1.1em;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            
        }

button:hover {
    background-color: rgba(0, 0, 0, 0.2);
        }

.cart-item-name, .cart-item-quantity, .cart-item-price {
            flex: 1;
        }                             

.banner-image {
    width: 100%;
    height: auto;
    filter: brightness(70%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button-primary {
    background-color: transparent;
    color: black;
    border: 2px solid black;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.button-primary:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.service-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    text-align: center;
}

.feature img {
    width: 200px;
	height:200px;
    margin-bottom: 15px;
	 border-radius: 50%;
}

#parameters-section select {
    width: 150px;
    height: 30px;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#parameters-section select option {
    text-align: center;
}

footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em; 
}

footer .social-media {
    display: flex;
	gap: 1em; 
}

footer .social-icon {
    width: 2em;
    height: 2em;
    transition: transform 0.3s, filter 0.3s;
}

footer .social-icon:hover {
    transform: scale(1.2); 
    filter: brightness(0.8) invert(1);
}

footer .legal-link a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .legal-link a:hover {
    color: #0090ff;
}

.message.success {
    background-color: #28a745;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

#account-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}

#account-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    width: 100%; 
}

#account-details li strong {
    color: #343a40; 
    margin-right: 10px;
}

#account-details span {
    color: #6c757d;
}


fieldset {
    border: 2px solid #007BFF;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width:80%;
}

legend {
    font-weight: bold;
    color: #007BFF;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #e9f5ff;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}