﻿    .ferry-about-section {
        background: #f8fafc;
    }

    .ferry-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e5e7eb;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        margin: 10px 30px 45px;
    }

    .ferry-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
    }

    .ferry-content {
        padding: 30px;
    }

    .ferry-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 24px;
        color: #222;
    }

    .ferry-title img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .ferry-content p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 12px;
        font-size: 15px;
    }

    .ferry-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .ferry-features span {
        background: #f1f5f9;
        color: #334155;
        border-radius: 20px;
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .ferry-features span:nth-child(1) {
        background: #e0f2fe;
        color: #0369a1;
    }

    .ferry-features span:nth-child(2) {
        background: #f3e8ff;
        color: #7e22ce;
    }

    .ferry-features span:nth-child(3) {
        background: #ecfdf5;
        color: #047857;
    }

    .ferry-features .tourist-choice {
        background: #dcfce7;
        color: #15803d;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        opacity: 1;
    }

    .carousel-control-icon {
        width: 40px;
        height: 40px;
        background: #007bff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .carousel-indicators {
        bottom: 0;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #aaa;
    }

    .carousel-indicators .active {
        background-color: #007bff;
    }

    @media (max-width: 767px) {

        .ferry-card {
            margin: 10px 5px 45px;
        }

        .ferry-image {
            height: 220px;
        }

        .ferry-content {
            padding: 20px;
        }

        .ferry-title {
            font-size: 20px;
        }

        .ferry-content p {
            font-size: 14px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 35px;
        }

        .carousel-control-icon {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }

        .ferry-features {
            justify-content: center;
        }
    }