@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans_Extra_Bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans_Extra_Light.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'StudioSans';
    src: url('../font/studio-sans/StudioSans_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

* {
    font-family: 'StudioSans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    background-color: #ffffff;
    margin-top: 10px;
    padding: 0 20px;
}

.header {
    background-color: #004175;
    color: white;
    padding: 20px 0;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 768px) {
    .header-container {
        justify-content: flex-start;
        gap: 10px;
    }
}

.header img {
    height: 50px;
}

.search-container {
    flex-grow: 1;
    margin: 0 20px;
    display: flex;
}

.search-box {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #f8f8f8;
    border-radius: 15px 0 0 15px;
    background-color: #f8f8f8;
    color: #333;
    outline: none;
    border-right: none;
    flex-grow: 1;
}

.search-button {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #f8f8f8;
    border-radius: 0 15px 15px 0;
    background-color: #0066cc;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a,
.menu span {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.menu a:hover,
.menu span:hover {
    background-color: #0066cc;
}

.menu i {
    margin-right: 8px;
}

.blog-special {
    background-color: #388E3C;
    border-radius: 15px;
    text-decoration: none;
}

.blog-special:hover {
    background-color: #D62839;
}

.nav-bar {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 100%;
}

.nav-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.nav-bar a {
    font-family: 'StudioSans', sans-serif;
    font-weight: 200;
    color: #333;
    text-decoration: none;
    padding: 4px 12px;
    font-size: 16px;
    border-radius: 15px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    position: relative;
}

.nav-bar a:hover {
    color: #388E3C;
    background-color: transparent;
}

.nav-bar a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0;
    height: 3px;
    background-color: transparent;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
}

.nav-bar a:hover::after {
    width: 100%;
    background-color: #388E3C;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.single-image-container {
    position: relative;
    width: 100%;
    height: auto;
}

.single-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.title-with-line {
    display: flex;
    align-items: center;
    width: calc(100% - 10px);
    margin: 0 auto;
}

.product-listing-title {
    margin-right: 20px;
    font-weight: 200;
    color: #004175;
}

.line-and-link {
    flex-grow: 1;
    display: flex;
    align-items: center;
    max-width: calc(100% - 140px);
}

.line {
    height: 2px;
    background-color: #004175;
    flex-grow: 1;
    margin-right: 20px;
}

.view-all {
    white-space: nowrap;
    text-decoration: none;
    color: #004175;
    font-weight: bold;
}

.product-listing {
    width: 100%;
    margin: 20px auto;
    padding: 20px 20px;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.product-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.product-card {
    font-family: 'StudioSans', sans-serif;
    width: calc(25% - 20px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-content {
    padding: 10px;
}

.product-title {
    text-align: left;
    font-size: 18px;
    font-weight: 200;
    color: #333;
    margin: 10px 0;
}

.add-to-cart-button {
    background-color: transparent;
    color: #E65C00;
    border: 2px solid #E65C00;
    padding: 10px 15px;
    text-align: center;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.add-to-cart-button:hover {
    background-color: #E65C00;
    color: #ffffff;
}

.comments-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.comment-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
    width: calc(50% - 14px);
    display: flex;
}

.comment-product-image {
    flex: 1;
    padding-right: 10px;
}

.comment-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info {
    flex: 2;
    padding-left: 10px;
}

.product-name,
.product-rating {
    margin-bottom: 5px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 10px;
}

.comment-author {
    font-style: italic;
    color: #333;
}

.footer {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #1d1c32;
    color: #fff;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    background-color: #1c1c2f;
    color: #fff;
    flex-wrap: wrap;
}

.footer-columns {
    display: flex;
    width: 75%;
    flex-wrap: wrap;
}

.one-column,
.two-column,
.three-column,
.four-column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.one-column a,
.two-column a,
.three-column a,
.four-column a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 10px 0;
}

.hero {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.hero-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.hero a {
    color: #ffffff;
    text-decoration: none;
}

.hero a:hover {
    color: #ffffff;
    text-decoration: none;
}

.steps-section {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.step-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(22% - 20px);
    position: relative;
    text-align: center;
    border: 3px solid #ddd;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin: 10px;
}

.step-card i {
    color: #0077b3;
    font-size: 2em;
    margin-bottom: 10px;
}

.step-title {
    font-family: 'StudioSans', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #004175;
    margin-bottom: 10px;
}

.step-description {
    font-family: 'StudioSans', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

@keyframes stepAnimation {
    0%, 100% {
        border-color: #ddd;
        transform: scale(1);
        background-color: rgba(248, 248, 248, 0.5);
    }

    10%, 15% {
        border-color: #0077b3;
        transform: scale(1.1);
        box-shadow: 0 0 15px #0077b3;
        background-color: #f8f8f8;
    }
}

.step-card:nth-child(1) {
    animation: stepAnimation 15s infinite ease-in-out;
}

.step-card:nth-child(2) {
    animation: stepAnimation 15s infinite 2s ease-in-out;
}

.step-card:nth-child(3) {
    animation: stepAnimation 15s infinite 4s ease-in-out;
}

.step-card:nth-child(4) {
    animation: stepAnimation 15s infinite 6s ease-in-out;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #f8f8f8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ddd;
    animation: numberAnimation 15s infinite ease-in-out;
}

@keyframes numberAnimation {
    0%, 100% {
        color: #ddd;
    }

    10%, 15% {
        color: #0077b3;
        font-size: 1.5em;
    }
}

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

@media (max-width: 768px) {
    .nav-bar-container {
        flex-direction: column;
        align-items: center;
    }
    
    .header-container {
        flex-direction: row;
        align-items: center;
    }

    .search-container, .menu {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }

    .product-cards-container, .steps-container {
        flex-direction: row;
        justify-content: center;
    }
    .step-card {
        width: calc(90% - 20px);
    }
    .product-card {
        width: calc(50% - 10px);
    }

    .email-subscription-banner {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .subscription-details {
        flex-direction: column;
        width: 100%;
    }

    .text-details, .form-container {
        width: 100%;
        padding: 0;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
    }

    .one-column, .two-column, .three-column, .four-column {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 20px;
    }

    .swiper-slide img.desktop {
        display: none;
    }

    .swiper-slide img.mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    .header .menu {
        display: none;
    }

    .header .search-container {
        display: none;
    }

    .header-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .header-container {
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .mobile-menu-icon {
        order: 3; /* Sağda */
    }
    

    .mobile-menu-icon {
        font-size: 1.5em;
        cursor: pointer;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .header-container {
        position: relative;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background-color: #004175;
        z-index: 1000;
        flex-direction: column;
        padding: 60px 0 20px 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav.active ~ * .mobile-menu-icon,
    .mobile-nav.active ~ .mobile-menu-icon {
        display: none;
    }

    .mobile-nav a {
        color: white;
        padding: 15px 25px;
        text-decoration: none;
        text-align: left;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }
    
    .mobile-nav-randevu {
        text-align: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-randevu .blog-special {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px 30px;
        background-color: #388E3C;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-nav-randevu .blog-special:hover {
        background-color: #388E3C;
    }

    .mobile-nav a:hover {
        background-color: #0056b3;
    }

    .mobile-nav .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 1.5em;
        color: white;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 5px;
    }

    .mobile-nav .close-btn:hover {
        color: #ff6b6b;
    }

    .nav-bar-container {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-columns {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .footer-columns > div {
        width: 50%;
        box-sizing: border-box;
        padding: 10px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin-bottom: 10px;
    }

    .hero {
        padding: 20px 10px;
    }
}

.swiper-container {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #004175;
}

.swiper-pagination-bullet {
    background: #004175;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #388E3C;
}

.swiper-slide img.desktop {
    display: block;
}

.swiper-slide img.mobile {
    display: none;
}

@media (max-width: 768px) {
    .swiper-slide img.desktop {
        display: none;
    }

    .swiper-slide img.mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    .swiper-container {
        margin-top: 0px;
        padding-top: 0px;
    }
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.gallery-item {
    width: calc(25% - 10px);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
}

.overlay.visible {
    visibility: visible;
    opacity: 1;
}

.new-collection-banner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    font-family: 'StudioSans', sans-serif;
    background: linear-gradient(to right, #f0eae0, #d4c4aa);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.collection-details {
    flex: 1;
    padding-right: 20px;
}

.collection-title {
    font-size: 28px;
    color: #305A30;
    margin-bottom: 10px;
}

.collection-subtitle {
    font-size: 18px;
    color: #587858;
    margin-bottom: 20px;
}

.shop-now-button {
    padding: 12px 20px;
    background-color: #789478;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'StudioSans', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.shop-now-button:hover {
    background-color: #567856;
}

.collection-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .new-collection-banner {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    .collection-details {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .collection-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: 'StudioSans', sans-serif;
    font-weight: 300;
}

.breadcrumb-item {
    padding: 0 2px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    text-decoration: underline;
    color: #01447e;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    color: #1c1c2f;
    margin: 0 9px;
    font-weight: bold;
}

/* Page Up Section */
.page-up {
    width: 100%;
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.page-up-title {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

/* About Us Section */
.about-us-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-us-content h2 {
    font-size: 28px;
    color: #004175;
    margin-bottom: 20px;
}

.about-us-content h3 {
    font-size: 24px;
    color: #004175;
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us-content ul {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    list-style-type: disc;
    padding-left: 20px;
}

.about-us-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.about-us-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-us-header-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Product List Styles */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #004175;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 10px;
}

.product-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.product-item:hover img {
    transform: scale(1.05);
}

/* Contact Form Styles */
.form-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Appointment Form Container */
.form-container.appointment-form {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.form-container label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    display: block;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

.form-container input[type="tel"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.form-container input[type="tel"]::-webkit-outer-spin-button,
.form-container input[type="tel"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-container input[type="tel"]:invalid {
    box-shadow: none;
}

.form-container input[type="tel"] {
    ime-mode: disabled;
}

.form-container button {
    padding: 10px 20px;
    background-color: #004175;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #003366;
}

.contact-info {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-info .hero {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #388E3C;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .map-icon {
    margin-left: 10px;
    color: #555;
    cursor: pointer;
}

/* Appointment Form Styles */
.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    color: #004175;
    margin-bottom: 10px;
}

.info-box {
    background-color: #e0f7fa;
    border: 1px solid #00acc1;
    color: #007c91;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #388E3C;
    outline: none;
    box-shadow: 0 0 10px rgba(56, 142, 60, 0.2);
}

.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    resize: vertical;
}

.form-group textarea:focus {
    border-color: #388E3C;
    outline: none;
    box-shadow: 0 0 10px rgba(56, 142, 60, 0.2);
}

.form-buttons {
    text-align: center;
    margin-top: 30px;
}

.form-buttons button {
    background-color: #388E3C;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-buttons button:hover {
    background-color: #2c6f2b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.icon-background img {
    position: absolute;
    width: 80px;
    opacity: 0.1;
    animation: float 10s infinite ease-in-out;
}

.centered-whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.whatsapp-button:hover {
    background-color: #1EBEA5;
}

.whatsapp-button i {
    margin-right: 10px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.form-group .intl-tel-input {
    width: 100%;
}

/* Button Appointment */
.btn-appointment {
    background-color: #388E3C;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-appointment:hover {
    background-color: #2e7031;
}

/* Testimonial Section */
.testimonial-section {
    width: 100%;
    background-color: #f4f4f4;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-section h2 {
    font-size: 28px;
    color: #004175;
    margin-bottom: 20px;
}

.testimonial {
    max-width: 800px;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-info strong {
    font-size: 16px;
    color: #004175;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified {
    color: #1da1f2;
}

.stars {
    color: #ffcc00;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.testimonial p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* FAQ Styles */
.faq-container {
    margin: 40px 0;
    padding: 20px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #004175;
    text-align: center;
}

.faq-item {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #004175;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9e9e9;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 20px;
    color: #666;
    font-size: 18px;
    background-color: #ffffff;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    display: block;
}

/* Privacy Policy Section */
.privacy-policy-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-policy-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content h2 {
    font-size: 28px;
    color: #004175;
    margin-bottom: 20px;
}

.privacy-policy-content h3 {
    font-size: 24px;
    color: #004175;
    margin-bottom: 20px;
}

.privacy-policy-content h4 {
    font-size: 20px;
    color: #004175;
    margin-bottom: 15px;
    margin-top: 20px;
}

.privacy-policy-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-policy-content ul {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-policy-content a {
    color: #004175;
    text-decoration: underline;
}

.privacy-policy-content a:hover {
    color: #0066cc;
}

.contact-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-item {
        flex: 1 1 calc(50% - 20px);
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info {
        order: 2;
        width: 100%;
        flex: none;
    }

    .form-container {
        order: 1;
        width: 100%;
        flex: none;
    }
    
    .form-container,
    .contact-info {
        flex: 1;
    }
}

