    /* Banner - Artık tüm ekran boyutlarında görünür */
    .kurumsal-banner {
        background: radial-gradient(ellipse, #ffffff, #f4f4f4);
        background-image: url("../images/basimiza_icat_cikarin/banner3-min.webp");
        background-size: cover;
        /* cover yerine contain kullanarak resmin tamamının görünmesini sağlar */
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        height: 100vh;
        /* Tam ekran yükseklik */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        overflow: hidden;
        z-index: 1;
    }

    /* Spaceship */
    .spaceship-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 15%;
        height: auto;
        z-index: 6;
        will-change: transform;
        transform-origin: center center;
    }

    .spaceship img {
        width: 100%;
        height: auto;
        display: block;
        transform-origin: center center;
    }

    /* Top Clouds */
    .top-clouds-container {
        position: relative;
        width: 100%;
        height: 350px;
        /* Mobil için daha kısa */
        overflow: visible;
        z-index: 5;
    }

    .top-cloud-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        will-change: transform;
    }

    .top-cloud-layer img {
        display: block;
        width: 100%;
        height: auto;
    }

    .top-white-cloud {
        z-index: 1;
        top: 50px;
    }

    .top-grey-cloud {
        z-index: 2;
        top: 90px;
    }

    .top-light-cloud {
        z-index: 3;
        top: 130px;
    }

    /* Form and Content */
    .form_baslik h2 {
        position: relative;
        color: #5f338a;
        font-family: "VistolSans-Bold", sans-serif;
        font-weight: 700;
        z-index: 2;
        font-size: 2rem;
        text-align: center;
    }

    .kurumsal-circle-container {
        position: relative;
        width: 300px;
        height: 300px;
        margin: 0 auto;
        /* Mobilde merkeze hizalı */
        animation: kurumsal-rotate 20s linear infinite;
    }

    .kurumsal-circle-background img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 50%;
    }

    .kurumsal-svg {
        position: absolute;
        top: -25px;
        left: -25px;
        width: 350px;
        height: 350px;
    }

    .kurumsal-svg text {
        font-size: 14px;
        fill: #444547;
        text-anchor: middle;
    }

    @keyframes kurumsal-rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .icat_description {
        font-family: "VistolSans-Regular", sans-serif;
        font-weight: 400;
        color: #3d3a2f;
        font-size: 15px;
        text-align: start;
        margin: 0 auto;
        padding: 0 15px;
        /* Mobil için içerik kenar boşluğu */
    }

    .sol-baslik {
        font-family: "VistolSans-Bold", sans-serif;
        font-weight: 700;
        color: #5f338a;
        text-align: start;
        font-size: 70px;
        line-height: 1;
        display: flex;
        flex-direction: column;
        margin-top: 5rem;
        /* Mobil için azaltıldı */
        padding: 0 15px;
        /* Mobil için içerik kenar boşluğu */
    }

    .sol-baslik span {
        font-family: "VistolSans-Bold", sans-serif;
        font-weight: 700;
        color: #707070;
        text-align: start;
        font-size: 18px;
        white-space: normal;
        /* Mobil için satır kaydırma izni */
        letter-spacing: 0.04em;
        text-transform: none;
        margin-top: 1rem;
    }

    .desc {
        font-family: "VistolSans-Regular", sans-serif;
        font-weight: 400;
        color: #707070;
        text-align: start;
        font-size: 15px;
        max-width: 100%;
        /* Mobil için genişlik */
        padding: 0 15px;
        /* Mobil için içerik kenar boşluğu */
        margin-bottom: 20px;
        /* Mobil için alt boşluk */
    }

    /* Title and Illustration Row */
    .title-illustration-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* İçeriği daha iyi dağıtır */
        flex-wrap: wrap;
        margin-bottom: 20px;
        padding: 0 15px;
        /* Mobil için içerik kenar boşluğu */
    }

    /* Atom Illustration */
    .character-container {
        position: relative;
        margin: 0 auto;
        /* Mobilde merkeze hizalı */
    }

    .character-container img {
        width: 100%;
        height: auto;
        display: block;
        animation: character-rotate 20s linear infinite;
    }

    @keyframes character-rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Form Styles */
    .contact-form-container {
        margin-top: 30px;
        /* Mobil için azaltıldı */
        position: relative;
        z-index: 10;
        padding: 0 15px;
        /* Mobil için içerik kenar boşluğu */
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        /* Mobil için azaltıldı */
        border: none;
        border-radius: 15px;
        /* Mobil için azaltıldı */
        font-family: "VistolSans-Regular", sans-serif;
        font-size: 14px;
        margin-bottom: 12px;
        /* Mobil için azaltıldı */
        background-color: #fff;
        color: #3d3a2f;
        transition: background-color 0.3s, color 0.3s;
    }

    .form-control::placeholder {
        color: #A9A9A9;
    }

    .form-control:focus {
        background-color: #5f338a;
        color: white;
        outline: none;
        box-shadow: none;
    }

    .form-control:focus::placeholder {
        color: white;
    }

    .form-row {
        display: flex;
        margin-right: -5px;
        /* Mobil için azaltıldı */
        margin-left: -5px;
        /* Mobil için azaltıldı */
        flex-wrap: wrap;
    }

    .form-group {
        padding-right: 5px;
        /* Mobil için azaltıldı */
        padding-left: 5px;
        /* Mobil için azaltıldı */
        margin-bottom: 10px;
        /* Mobil için azaltıldı */
        width: 100%;
        /* Mobil default genişlik */
    }

    .col-md-6 {
        flex: 0 0 100%;
        /* Mobil default genişlik */
        max-width: 100%;
        /* Mobil default genişlik */
    }

    textarea.form-control {
        min-height: 120px;
        /* Mobil için azaltıldı */
        resize: vertical;
    }

    .form-footer {
        display: flex;
        flex-direction: column;
        /* Mobil için dikey düzen */
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 15px;
        /* Mobil için azaltıldı */
    }

    .privacy-text {
        font-size: 12px;
        color: #707070;
        flex: 0 0 100%;
        /* Mobil için tam genişlik */
        margin-bottom: 15px;
    }

    .privacy-text a {
        color: #5f338a;
        text-decoration: none;
    }

    .privacy-text a:hover {
        text-decoration: underline;
    }

    .form-check {
        display: flex;
        align-items: center;
        margin-top: 5px;
    }

    .form-check-input {
        margin-right: 8px;
    }

    .form-check-label {
        font-size: 12px;
        color: #707070;
    }

    /* Buton animasyonu için ek stiller */
    .send-message-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: auto;
        /* Genişliği içeriğe göre ayarlanacak */
    }

    .send-message-btn svg {
        height: 18px;
        width: 18px;
        margin-left: 10px;
        fill: white;
        /* Beyaz SVG rengi - mevcut butonunuzun metin rengiyle uyumlu */
    }

    .send-message-btn .done {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        /* Başlangıçta gizli */
        color: white;
    }

    .send-message-btn .send {
        position: relative;
        transition: all 0.3s ease;
    }

    /* Bottom Clouds */
    .cloud-bottom-container {
        position: relative;
        width: 100%;
        height: 300px;
        /* Mobil için azaltıldı */
        overflow: hidden;
        margin-top: 40px;
        /* Mobil için azaltıldı */
        z-index: 4;
    }

    .cloud-bottom-layer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        will-change: transform;
    }

    .cloud-bottom-layer img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .cloud-grey-layer {
        z-index: 1;
        bottom: 80px;
    }

    .cloud-light-layer {
        z-index: 2;
        bottom: 40px;
    }

    .cloud-purple-layer {
        z-index: 3;
        bottom: 0px;
    }

    /* Tablet Responsiveness */
    @media (min-width: 576px) {
        .sol-baslik {
            font-size: 42px;
        }

        .character-container {
            width: 150px;
            height: 150px;
        }

        .send-message-btn {
            padding: 12px 35px;
            font-size: 15px;
        }
    }

    /* Medium devices like larger tablets */
    @media (min-width: 768px) {

        .form_baslik h2 {
            font-size: 1.8rem;
        }

        .sol-baslik {
            font-size: 48px;
        }

        .sol-baslik span {
            font-size: 16px;
        }

        .desc {
            font-size: 14px;
            max-width: 90%;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .form-footer {
            flex-direction: row;
            align-items: center;
        }

        .privacy-text {
            flex: 0 0 60%;
            margin-bottom: 0;
        }

        .send-message-btn {
            flex: 0 0 35%;
        }

        .character-container {
            width: 180px;
            height: 180px;
        }
    }

    /* Large devices */
    @media (min-width: 992px) {

        .sol-baslik {
            font-size: 60px;
            margin-top: 7rem;
        }

        .sol-baslik span {
            font-size: 18px;
        }

        .desc {
            font-size: 15px;
            max-width: 500px;
        }

        .title-illustration-row {
            justify-content: flex-start;
        }

        .kurumsal-circle-container {
            margin-left: 10%;
            margin-right: 0;
        }
    }

    /* Extra Large devices */
    @media (min-width: 1200px) {

        .top-clouds-container {
            height: 450px;
        }

        .cloud-bottom-container {
            height: 350px;
        }

        .sol-baslik {
            font-size: 70px;
        }

        .form-control {
            padding: 15px 20px;
            border-radius: 20px;
        }

        .send-message-btn {
            padding: 15px 40px;
            font-size: 16px;
        }
    }

    /* Extra small devices (portrait phones) */
    @media (max-width: 575.98px) {
        .spaceship-container {
            width: 15%;
        }

        .kurumsal-banner {
            height: 40vh;
            /* Daha kısa ama orantılı */
            background-size: contain;
        }

        .form_baslik h2 {
            font-size: 1.2rem;
        }

        .sol-baslik {
            font-size: 24px;
            margin-top: 3rem;
        }

        .sol-baslik span {
            font-size: 12px;
        }

        .desc {
            font-size: 12px;
        }

        .icat_description {
            font-size: 13px;
        }

        .character-container {
            width: 100px;
            height: 100px;
        }

        .top-clouds-container {
            height: 150px;
        }

        .cloud-bottom-container {
            height: 200px;
        }

        .top-white-cloud {
            top: 40px;
        }

        .top-grey-cloud {
            top: 60px;
        }

        .top-light-cloud {
            top: 80px;
        }

        .cloud-grey-layer {
            bottom: 60px;
        }

        .cloud-light-layer {
            bottom: 30px;
        }

        .cloud-purple-layer {
            bottom: 0px;
        }

        .kurumsal-circle-container {
            width: 180px;
            height: 180px;
        }

        .kurumsal-svg {
            width: 220px;
            height: 220px;
            top: -20px;
            left: -20px;
        }

        .kurumsal-svg text {
            font-size: 10px;
        }
    }

    .seo-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }