  /* Custom Header ve Menü */
    .custom-header {
        width: 100%;
        background-color: #283458;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-menu-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .custom-menu-toggle i {
        font-size: 24px;
        margin-right: 8px;
    }

    .custom-menu-toggle span {
        font-size: 18px;
    }

    .custom-home-icon {
        font-size: 24px;
    }

    /* Sağdan kayan menü */
.custom-menu {
    position: fixed;
    top: 0; /* En üstten başlasın */
    right: -100%;
    height: 100%;
    width: 80%;
    max-width: 250px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999; /* En yüksek z-index */
    transition: right 0.4s ease;
}

    .custom-menu.open {
        right: 0; /* Menü açılınca ekrana gelir */
    }

    .custom-menu a {
        display: block;
        padding: 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        font-size: 28px;
    }

    .custom-menu a:hover {
        background-color: #f4f4f4;
    }

.custom-close-btn {
    background-color: #ff5e5e;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: block;
}

.custom-close-btn:hover {
    background-color: #ff4b4b;
}

.custom-menu.open {
    display: block;
}

        /* Mobil görünüm */
        @media (max-width: 768px) {
            .custom-header {
                padding: 8px 10px;
            }

            .custom-home-icon i {
                font-size: 24px;
            }

            .custom-home-icon1 i {
                font-size: 34px; /* İkonun boyutunu ayarlayın */
                color: white; /* İkonun rengini ayarlayın */
            }


            .custom-menu-toggle i {
                font-size: 28px;
            }

            .custom-menu-toggle span {
                font-size: 28px;
            }

            /*    .custom-menu {
                top: 45px;
                width: 100%;
            }
                */

            .custom-menu a {
                font-size: 18px;
                padding: 8px;
            }
        }


        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

       .about-section {
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    text-align: center; /* İçeriği ortalamak için */
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-section .about-title {
    font-size: 22px;
    font-weight: bold;
    color: #ff7f00;
    margin-bottom: 10px;
}

.about-section .custom-divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 28px;
    }

    .about-section p {
        font-size: 16px;
    }

    .about-section .about-title {
        font-size: 20px;
    }
}
        .btn-custom {
        background-color: #ff7f00;
        color: #fff;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .btn-custom:hover {
        background-color: #e76e00;
    }
