body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1;
    overflow-x: hidden;
}

.top-bar {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.7rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.top-bar p {
    margin: 0;
    display: inline-block;
    position: absolute;
    top: 0.5rem;
    left: 90%;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { left: 100%; }
    100% { left: -100%; }
}

.top-bar a {
    color: white;
    text-decoration: none;
}

header {
    background: #ae8334;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
    color: white;
    margin-bottom: 0.2rem;
}

.logo-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    color: #f5f5f5;
    letter-spacing: 0.5px;
}

.nav-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: font-size 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    font-size: 1.21rem;
}

.dropdown-toggle::after {
    content: '\25BC';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ae8334;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, font-size 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #2c3e50;
    font-size: 0.99rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

#home {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background-image: url('images/mahkemesalonu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

#hakkimizda {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background-image: url('images/mahkemesalonu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hakkimizda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

#hakkimizda h2 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    max-width: 100%;
    z-index: 0;
}

.hero-subtext {
    margin: 1rem auto;
    padding: 1rem;
    background-color: #ae8334;
    max-width: 80%;
}

.hero-subtext p {
    margin: 0;
    font-size: 1.17rem;
    font-weight: 500;
    text-transform: uppercase;
    font-style: italic;
    color: white;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background-color: #1a252f;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
}

.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ae8334;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-cta:hover {
    background-color: #2c3e50;
    transform: scale(1.1);
}

#tarihce {
    padding: 2rem 0;
    background-color: #f8f8f8;
}

#tarihce h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.tarihce-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.tarihce-text {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.tarihce-text p {
    margin-bottom: 1rem;
}

.tarihce-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#misyon-vizyon {
    padding: 2rem 0;
    background-color: #ffffff;
}

#misyon-vizyon h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.misyon-vizyon-container {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.misyon, .vizyon {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.misyon h3, .vizyon h3 {
    font-size: 1.2rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.misyon p, .vizyon p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

#ekibimiz {
    padding: 2rem 0;
    background-color: #f8f8f8;
}

#ekibimiz h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.ekibimiz-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.team-member {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #1a252f;
    margin: 0.5rem 0 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

#degerlerimiz {
    padding: 2rem 0;
    background-color: #ffffff;
}

#degerlerimiz h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.degerlerimiz-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.value {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.value h3 {
    font-size: 1.2rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.value p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

#hakkimizda-cta {
    padding: 2rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.hakkimizda-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.hakkimizda-cta-container h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.hakkimizda-cta-container p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-signals {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.trust-signals p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

.trust-signals strong {
    color: #ae8334;
    display: block;
    font-size: 1.1rem;
}

.team-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-subtext {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

#biz-kimiz, #hizmetlerimiz, #mansetler, #sss, #contact {
    padding: 2rem 0;
}

#biz-kimiz h2, #hizmetlerimiz h2, #mansetler h2, #sss h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 1rem;
    text-align: center;
}

.biz-kimiz-container, .dogu-abidin-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.biz-kimiz-text, .dogu-abidin-text {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.biz-kimiz-text p, .dogu-abidin-text p {
    margin-bottom: 1rem;
}

.biz-kimiz-image, .dogu-abidin-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.service-button {
    display: inline-block;
    background-color: #ae8334;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.service-button:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
}

.headlines-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.headline {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.headline-title {
    font-size: 1.2rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.headline-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.headline-link {
    display: inline-block;
    color: #ae8334;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.headline-link:hover {
    color: #2c3e50;
}

.headlines-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background-color: #ae8334;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #2c3e50;
}

.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 1.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

.faq-answer a {
    color: #ae8334;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-left {
    flex: 0 0 40%;
}

.contact-left h2 {
    font-size: 2rem;
    color: #1a252f;
    margin: 0 0 1rem 0;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-subtext {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.contact-info {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.contact-info a {
    display: inline-block;
    margin-right: 0.5rem;
    color: #ae8334;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2c3e50;
}

.contact-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.contact-right {
    flex: 0 0 60%;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    background-color: #f8f8f8;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ae8334;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background-color: #1a252f;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
}

footer {
    background-color: #1a252f;
    color: white;
    padding: 2rem 0;
    width: 100%;
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-newsletter h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 0.6rem;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    background-color: white;
    color: #333;
}

.newsletter-button {
    background-color: #ae8334;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-button:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-about {
    font-size: 0.9rem;
    color: #f5f5f5;
    line-height: 1.5;
    margin: 0;
}

.footer-services-column h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    margin-bottom: 0.5rem;
}

.footer-services-list a {
    color: #ae8334;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-services-list a:hover {
    color: #ffffff;
}

.footer-contact-column h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-location {
    font-size: 0.9rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.footer-contact-info {
    font-size: 0.9rem;
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-info a {
    color: #ae8334;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 950px) {
    .nav-image {
        display: none;
    }

    .hero-subtext p {
        font-size: 0.91rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 80%;
        max-width: 250px;
        background-color: #ae8334;
        padding: 0.5rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        border-radius: 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #8a6727;
        display: none;
        opacity: 1;
        transform: none;
        max-height: 300px;
        overflow-y: auto;
        scrollbar-width: thin;
        width: 100%;
        border-radius: 0 0 4px 4px;
    }

    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: #2c3e50;
        border-radius: 3px;
    }

    .dropdown-menu::-webkit-scrollbar-track {
        background-color: #ae8334;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-toggle::after {
        content: '\25B6';
        float: right;
        margin-right: 1rem;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .logo {
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.8px;
    }

    .logo-subtext {
        font-size: 0.55rem;
        font-weight: 350;
        letter-spacing: 0.4px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links li a {
        font-size: 0.9rem;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        font-size: 0.99rem;
    }

    .dropdown-menu li a {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .dropdown-menu li a:hover {
        font-size: 0.88rem;
    }

    .floating-cta {
        display: block;
    }

    .hero-container {
        min-height: 25vh;
    }

    .hero-subtext {
        max-width: 90%;
        padding: 0.5rem;
    }

    .hero-subtext p {
        font-size: 1.17rem;
    }

    #hakkimizda {
        padding: 3rem 0;
    }

    #hakkimizda h2 {
        font-size: 2rem;
    }

    .tarihce-container, .misyon-vizyon-container, .biz-kimiz-container, .dogu-abidin-container {
        flex-direction: column;
        gap: 1rem;
    }

    .tarihce-text, .misyon, .vizyon, .biz-kimiz-text, .dogu-abidin-text {
        font-size: 1rem;
    }

    .tarihce-image, .biz-kimiz-image, .dogu-abidin-image {
        max-width: 80%;
    }

    .misyon h3, .vizyon h3 {
        font-size: 1.1rem;
    }

    .misyon p, .vizyon p {
        font-size: 0.9rem;
    }

    .ekibimiz-container, .degerlerimiz-container {
        grid-template-columns: 1fr;
    }

    .team-member h3, .value h3 {
        font-size: 1.1rem;
    }

    .team-role, .team-member p, .value p {
        font-size: 0.8rem;
    }

    .hakkimizda-cta-container h2 {
        font-size: 1.8rem;
    }

    .hakkimizda-cta-container p {
        font-size: 1rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-signals p {
        font-size: 0.8rem;
    }

    .trust-signals strong {
        font-size: 1rem;
    }

    .image-subtext {
        font-size: 0.8rem;
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .service-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .headlines-container {
        grid-template-columns: 1fr;
    }

    .headline-title {
        font-size: 1.1rem;
    }

    .headline-text {
        font-size: 0.9rem;
    }

    .headline-link {
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 0.7rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-left, .contact-right {
        flex: 0 0 100%;
    }

    .contact-left h2 {
        font-size: 1.8rem;
    }

    .contact-subtext {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .submit-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-newsletter h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        max-width: 100%;
    }

    .footer-about {
        font-size: 0.85rem;
    }

    .footer-services-column h3,
    .footer-contact-column h3 {
        font-size: 1.1rem;
    }

    .footer-services-list li a,
    .footer-location,
    .footer-contact-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo-subtext {
        font-size: 0.5rem;
    }

    .nav-links {
        width: 90%;
        max-width: 220px;
        right: 5px;
    }

    .nav-links li a {
        font-size: 0.85rem;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        font-size: 0.935rem;
    }

    .dropdown-menu li a {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .dropdown-menu li a:hover {
        font-size: 0.825rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .hero-container {
        min-height: 20vh;
    }

    .hero-subtext p {
        font-size: 1.04rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .floating-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    #hakkimizda {
        padding: 2rem 0;
    }

    #hakkimizda h2 {
        font-size: 1.8rem;
    }

    #tarihce h2, #misyon-vizyon h2, #ekibimiz h2, #degerlerimiz h2, #hakkimizda-cta h2 {
        font-size: 1.6rem;
    }

    .tarihce-text, .misyon p, .vizyon p {
        font-size: 0.9rem;
    }

    .tarihce-image {
        max-width: 100%;
    }

    .misyon h3, .vizyon h3 {
        font-size: 1rem;
    }

    .team-member h3, .value h3 {
        font-size: 1rem;
    }

    .team-role, .team-member p, .value p {
        font-size: 0.7rem;
    }

    .image-subtext {
        font-size: 0.7rem;
    }

    .hakkimizda-cta-container p {
        font-size: 0.9rem;
    }

    .trust-signals p {
        font-size: 0.7rem;
    }

    .trust-signals strong {
        font-size: 0.9rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .headlines-container {
        gap: 1rem;
    }

    .headline {
        padding: 1rem;
    }

    .headline-title {
        font-size: 1rem;
    }

    .headline-text {
        font-size: 0.8rem;
    }

    .headline-link {
        font-size: 0.7rem;
    }

    .faq-question {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .faq-answer {
        font-size: 0.7rem;
        padding: 0.6rem;
    }

    .contact-left h2 {
        font-size: 1.6rem;
    }

    .contact-subtext {
        font-size: 0.9rem;
    }

    .contact-info {
        font-size: 0.8rem;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.7rem;
        padding: 0.4rem;
    }

    .submit-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .footer-newsletter h2 {
        font-size: 1.6rem;
    }

    .newsletter-form input,
    .newsletter-button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .footer-about {
        font-size: 0.8rem;
    }

    .footer-services-column h3,
    .footer-contact-column h3 {
        font-size: 1rem;
    }

    .footer-services-list li a,
    .footer-location,
    .footer-contact-info {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 1rem;
    }
}