/* General Style Resets and Base Settings */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1A7332; /* Koyu medikal yeşil arka plan */
    color: #E0E0E0; /* Açık gri yazı, kontrast için */
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* Medical Theme Color Palette */
.primary-dark { color: #E0E0E0; } /* Açık gri yazı */
.primary-dark-bg { background-color: #333333; } /* Koyu gri arka plan */
.secondary-blue { color: #003366; } /* Koyu medikal mavi */
.secondary-blue-bg { background-color: #003366; }
.tertiary-green { color: #1A7332; } /* Koyu medikal yeşil */
.tertiary-green-bg { background-color: #1A7332; }
.dark-blue-text { color: #003366; } /* Koyu mavi yazı */
.darker-blue-bg { background-color: #002244; } /* Daha koyu mavi arka plan */
.medium-blue-bg { background-color: #003366; } /* Koyu medikal mavi arka plan */
.dark-text { color: #E0E0E0; } /* Açık gri yazı */

/* Heading Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #E0E0E0; /* Açık gri başlıklar */
}

/* General Button Styles */
.btn-medical {
    @apply inline-flex items-center justify-center px-10 py-4 font-semibold rounded-md shadow-lg transition duration-300 ease-in-out transform hover:scale-105;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    font-size: 1.1rem;
}
.btn-primary-medical {
    @apply bg-secondary-blue text-dark-text hover:bg-tertiary-green hover:text-dark-text;
}
.btn-outline-medical {
    @apply border-2 border-secondary-blue text-secondary-blue bg-transparent hover:bg-secondary-blue hover:text-dark-text;
}
.btn-dark-outline-medical {
    @apply border-2 border-dark-text text-dark-text bg-transparent hover:bg-dark-text hover:text-secondary-blue;
}
.btn-contact-medical {
    @apply bg-tertiary-green text-dark-text hover:bg-secondary-blue hover:text-dark-text;
}

/* Header Styles */
/* Header Styles */
#main-header {
    background-color: #003366; /* Koyu medikal mavi */
    box-shadow: 0 4px 35px rgba(0,0,0,0.3);
    height: 80px; /* Sabit yükseklik */
    display: flex;
    align-items: center; /* İçeriği dikeyde ortala */
    position: fixed; /* Header'ı ekranın üstüne sabitle */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Header'ın diğer içeriklerin üzerinde kalması için */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease; /* Görsel geçişler */
}
#main-header.scrolled {
    background-color: rgba(0, 51, 102, 0.98); /* Koyu mavi, opak */
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4); /* Hafif daha belirgin gölge */
}

/* Slider veya ana içeriğin header altında başlaması için */
main, .slider-container, .page-hero-banner {
    margin-top: 80px; /* Header yüksekliği kadar boşluk */
}
.header-link-effect {
    color: #E0E0E0; /* Açık gri yazı */
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}
.header-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #1A7332; /* Koyu yeşil */
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease-out;
}
.header-link-effect:hover::before {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}
.header-link-effect:hover {
    color: #1A7332; /* Koyu yeşil on hover */
}
.vertical-divider {
    background-color: #fff;
    width: 2px;
    height: 30px;
}
#header-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;
}


/* Mobile Menu Styles */
#mobile-menu {
    background-color: #003366; /* Koyu medikal mavi */
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-link {
    @apply text-dark-text hover:text-tertiary-green transition duration-300 font-medium py-3 px-6 rounded-md;
    border-left: 4px solid transparent;
}
.mobile-menu-link:hover {
    border-left-color: #1A7332;
}
.mobile-submenu-container {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
}
.mobile-menu-chevron {
    color: #FFFFFF; /* Beyaz ikon */
    transition: transform 0.3s ease;
}
.mobile-menu-chevron:hover {
    color: #1A7332; /* Koyu yeşil on hover */
}

/* ----- RTL (Sağdan Sola) Özel Stiller ----- */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] .header-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}
html[dir="rtl"] .header-social-icons > * {
    margin-left: 0;
    margin-right: 0.75rem;
}
html[dir="rtl"] .vertical-divider {
    margin-left: 1rem;
    margin-right: 1rem;
}
html[dir="rtl"] .space-x-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
html[dir="rtl"] .ml-1 { margin-left: 0; margin-right: 0.25rem; }
html[dir="rtl"] .mr-4 { margin-right: 0; margin-left: 1rem; }
html[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
html[dir="rtl"] .pr-2 { padding-right: 0; padding-left: 0.5rem; }
html[dir="rtl"] .fa-chevron-right {
    transform: scaleX(-1);
}
html[dir="rtl"] .fa-chevron-down {
    transform: scaleX(-1);
}
html[dir="rtl"] .first-level-dropdown {
    left: auto;
    right: 0;
}
html[dir="rtl"] .nested-level-dropdown {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0.5rem;
}
html[dir="rtl"] .slider-nav-arrow.left {
    left: auto;
    right: 20px;
}
html[dir="rtl"] .slider-nav-arrow.right {
    right: auto;
    left: 20px;
}
html[dir="rtl"] .carousel-arrow.left {
    left: auto;
    right: 10px;
}
html[dir="rtl"] .carousel-arrow.right {
    right: auto;
    left: 10px;
}
html[dir="rtl"] .services-carousel {
    direction: rtl;
}
html[dir="rtl"] .service-card {
    margin-right: 10px;
    margin-left: 10px;
}

/* Yeni Hero Banner Stilleri (Service Detail Page) */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #E0E0E0; /* Açık gri yazı */
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-top: 60px; /* Header yüksekliği kadar boşluk */
}

.page-hero-banner p{ 

        font-size: 1rem;
        margin-top: 4rem;
        margin-left: 12rem;
       

        }

        @media (max-width: 768px) {
  .page-hero-banner p {
    margin-left: 0 !important;
    margin-top: 2.5rem; /* isteğe bağlı, biraz boşluk kalır */
    font-size: 0.9rem; /* isteğe bağlı, daha küçük font */
  
  }
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.7)); /* Koyu mavi katman */
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 1.5rem;
}
.page-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(0,51,102,0.6), 0 0 25px rgba(0,51,102,0.4);
}
.page-hero-content p {
    font-size: 1.8rem;
    color: #E0E0E0; /* Açık gri yazı */
    margin-top: 1rem;
}

/* Hizmet Detay Alanı Stilleri */
.service-detail-section {
    background-color: #333333; /* Koyu gri arka plan */
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    padding: 5rem;
    margin-top: -320px;
    position: relative;
    z-index: 10;
    border-top: 8px solid #003366; /* Koyu mavi üst çizgi */
}
.service-detail-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #E0E0E0; /* Açık gri yazı */
    position: relative;
    padding-bottom: 1.5rem;
}

.service-detail-section p {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.6;
    
}

.service-detail-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background-color: #1A7332; /* Koyu yeşil */
    border-radius: 3px;
}
.service-detail-content {
    font-size: 1.15rem;
    color: #E0E0E0; /* Açık gri yazı */
    line-height: 1.8;
}
/* CKEditor İçeriği için Stiller */
.service-detail-content p {
    margin-bottom: 1.5em;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0; /* Açık gri yazı */
}
.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #E0E0E0; /* Açık gri yazı */
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5em;
}
.service-detail-content h2 {
    font-size: 2.5rem;
    border-bottom: 3px solid #003366; /* Koyu mavi çizgi */
    display: inline-block;
    padding-right: 1rem;
}
.service-detail-content h3 {
    font-size: 2rem;
    color: #1A7332; /* Koyu yeşil */
}
.service-detail-content h4 {
    font-size: 1.75rem;
    color: #E0E0E0; /* Açık gri yazı */
}
.service-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2.5rem auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 3px solid #1A7332; /* Koyu yeşil kenarlık */
}
.service-detail-content ul,
.service-detail-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5em;
    list-style-position: outside;
    color: #E0E0E0; /* Açık gri yazı */
}
.service-detail-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}
.service-detail-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}
.service-detail-content a {
    color: #1A7332; /* Koyu yeşil */
    text-decoration: underline;
    transition: color 0.3s ease;
}
.service-detail-content a:hover {
    color: #003366; /* Koyu mavi */
    text-decoration: none;
}
/* Tablo Stilleri */
.service-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 0.75rem;
    overflow: hidden;
}
.service-detail-content th,
.service-detail-content td {
    padding: 1.2rem 1.8rem;
    border: 1px solid #1A7332; /* Koyu yeşil kenarlık */
    text-align: left;
    font-size: 1rem;
    color: #E0E0E0; /* Açık gri yazı */
}
.service-detail-content th {
    background-color: #003366; /* Koyu mavi arka plan */
    font-weight: 600;
    color: #E0E0E0; /* Açık gri yazı */
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.service-detail-content tr:nth-child(even) {
    background-color: #333333; /* Koyu gri zebra şerit */
}
.service-detail-content tr:hover {
    background-color: #002244; /* Daha koyu mavi */
}

/* Katalog Section */
.katalog-section {
    background: linear-gradient(to bottom, #1A7332, #003366); /* Koyu yeşil-mavi gradient */
}
.katalog-card {
    border-left: 4px solid #003366;
    transition: transform 0.3s ease;
}
.katalog-card:hover {
    transform: translateY(-5px);
}

/* Gallery Section */
.gallery-section {
    background-color: #333333; /* Koyu gri arka plan */
    padding: 6rem 0;
    border-radius: 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid #1A7332;
}
.gallery-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-align: center;
    color: #E0E0E0; /* Açık gri yazı */
    position: relative;
    padding-bottom: 1.5rem;
}
.gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background-color: #003366; /* Koyu mavi */
    border-radius: 3px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #1A7332;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.lg-backdrop {
    background: rgba(0, 51, 102, 0.95) !important; /* Koyu mavi */
}
.lg-toolbar {
    background: rgba(0, 51, 102, 0.8) !important; /* Koyu mavi */
}
.lg-sub-html {
    background: rgba(0, 51, 102, 0.8) !important; /* Koyu mavi */
    color: #E0E0E0; /* Açık gri yazı */
    padding: 10px 20px;
}

/* Hizmetler Alanı Stilleri (Benzer Hizmetler için) */
.related-services-section {
    background: linear-gradient(to bottom, #1A7332, #003366); /* Koyu yeşil-mavi gradient */
    padding: 10rem 0;
}
.related-services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #E0E0E0; /* Açık gri yazı */
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    background: linear-gradient(to right, #ffffff, #ffffff); /* Koyu renk gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.related-services-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 8px;
    background-color: #003366; /* Koyu mavi */
    border-radius: 4px;
}

/* Hizmet Kartları Kaydırma İçin Stiller */
.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.medical-services-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding-bottom: 1rem;
    gap: 2.5rem;
    flex-wrap: nowrap;
}
.medical-service-card {
    flex-shrink: 0;
    width: calc((100% / 3) - (2 * 2.5rem / 3));
    background-color: rgba(51, 51, 51, 0.8); /* Koyu gri, hafif şeffaf */
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(0,0,0,0.3);
    border-top: 12px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.medical-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: #1A7332; /* Koyu yeşil */
}
.medical-service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.medical-service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.medical-service-card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #E0E0E0; /* Açık gri yazı */
    margin-bottom: 1rem;
    line-height: 1.2;
}
.medical-service-card-content p {
    font-family: 'Open Sans', sans-serif;
    color: #E0E0E0; /* Açık gri yazı */
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.medical-service-card-link {
    @apply inline-flex items-center text-tertiary-green font-semibold hover:text-secondary-blue transition duration-300;
    font-family: 'Montserrat', sans-serif;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(51, 51, 51, 0.7); /* Koyu gri */
    color: #FFFFFF; /* Beyaz ikon */
    padding: 18px;
    cursor: pointer;
    z-index: 15;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    font-size: 1.5rem;
}
.carousel-arrow:hover {
    background: rgba(51, 51, 51, 0.9);
    color: #1A7332; /* Koyu yeşil on hover */
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.carousel-arrow.left {
    left: 0;
}
.carousel-arrow.right {
    right: 0;
}
.carousel-arrow.hidden {
    display: none;
}

/* Call to Action için gradient */
.cta-gradient-medical {
    background: linear-gradient(to right, #003366, #002244, #1A7332); /* Koyu medikal renkler */
}
.cta-gradient-medical h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.contact-button-styled {
    background-color: #003366; /* Koyu mavi */
    color: #E0E0E0; /* Açık gri yazı */
    border: 2px solid #003366;
    padding: 1.2rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
.contact-button-styled:hover {
    background-color: #1A7332; /* Koyu yeşil */
    color: #E0E0E0;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Footer Menü Stilleri */
footer {
    background-color: #003366; /* Koyu medikal mavi */
    color: #E0E0E0; /* Açık gri yazı */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.footer-logo-container .footer-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;

}

.footer-menu-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 2.5rem;
}
@media (max-width: 1024px) {
    .footer-menu-grid {
        display: flex;
        flex-direction: column; /* Öğeleri dikey olarak sırala */
        gap: 0.75rem; /* Öğeler arası boşluk */
        text-align: left; /* Metni sola yasla */
        justify-content: start; /* İçeriği sola hizala */
    }

    .footer-menu-grid li {
        width: 100%; /* Öğelerin tam genişlikte olmasını sağla */
    }

    .footer-menu-grid ul {
        margin-left: 0; /* Alt menülerin sol boşluğunu sıfırla */
    }
}
.footer-link-effect {
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    text-decoration: none;
    overflow: hidden;
    color: #E0E0E0; /* Açık gri yazı */
}
.footer-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1A7332; /* Koyu yeşil */
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}
.footer-link-effect:hover::before {
    width: 100%;
}
.footer-link-effect:hover {
    color: #1A7332; /* Koyu yeşil */
}
.text-copyright {
    color: #E0E0E0; /* Açık gri yazı */
}

/* Animasyonlar */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero-content h1 {
        font-size: 3.5rem;
    }
    .page-hero-content p {
        font-size: 1.5rem;
    }
    .service-detail-section {
        padding: 3.5rem;
        margin-top: -80px;
    }
    .service-detail-section h2 {
        font-size: 3rem;
    }
    .related-services-section h2 {
        font-size: 4rem;
    }
    .medical-service-card {
        min-width: calc((100% / 2) - (2.5rem / 2));
    }
    .gallery-section h2 {
        font-size: 3.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-banner {
        height: 300px;
        margin-top: 60px; /* Header yüksekliği kadar boşluk */
    }

   
    .page-hero-content h1 {
        font-size: 2.8rem;
    }
    .page-hero-content p {
        font-size: 1.2rem;
    }
    .service-detail-section {
        padding: 2rem;
        margin-top: -250px;
    }
    .service-detail-section h2 {
        font-size: 2.5rem;
    }
    .related-services-section {
        padding: 6rem 0;
    }
    .related-services-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .medical-service-card img {
        height: 200px;
    }
    .medical-service-card-content h3 {
        font-size: 1.8rem;
    }
    .mobile-submenu-container {
        padding-left: 0.5rem;
    }
    .carousel-arrow {
        padding: 12px;
        font-size: 1.2rem;
    }
    .medical-service-card {
        min-width: 100%;
        margin-right: 0;
    }
    .services-carousel-wrapper {
        padding: 0 20px;
    }
    .gallery-section h2 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .gallery-item img {
        height: 150px;
    }
    .contact-button-styled {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}