 <style>
        .fiyat-form-wrapper {
            max-width: 600px;
            margin: auto;
            background: #f9f9f9;
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
            font-family: 'Segoe UI', sans-serif;
        }

        .fiyat-form-wrapper h3 {
            text-align: center;
            font-size: 22px;
            margin-bottom: 25px;
            color: #333;
        }

        .fiyat-form-group {
            margin-bottom: 18px;
        }

        .fiyat-form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 15px;
            color: #842723;
        }

        .fiyat-form-group input,
        .fiyat-form-group select {
            width: 100%;
            padding: 11px 13px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
            transition: border-color 0.2s ease-in-out;
        }

        .fiyat-form-group input:focus,
        .fiyat-form-group select:focus {
            border-color: #0073aa;
            outline: none;
        }

        .fiyat-form-submit {
            text-align: center;
        }

        .fiyat-form-submit button {
            padding: 12px 30px;
            font-size: 16px;
            background: #842723;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .fiyat-form-submit button:hover {
            background: #541A16;
        }

        .fiyat-sonuc {
            margin-top: 30px;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #842723;
            font-size: 15px;
            line-height: 1.6;
            color: #222;
        }

        @media (max-width: 480px) {
            .fiyat-form-wrapper {
                padding: 15px;
            }

            .fiyat-sonuc {
                font-size: 14px;
            }

            .fiyat-form-submit button {
                width: 100%;
            }
        }
    </style>
