        .delete-account-hero {
            padding: 130px 0 70px;
            background: linear-gradient(135deg, #f5f3ff, #ffffff);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .delete-account-hero h1 {
            font-size: 68px;
            font-weight: 700;
            color: #333;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        .delete-account-hero h1 span {
            color: #7c3aed;
        }
        .delete-account-hero .subtitle {
            font-size: 20px;
            font-weight: 600;
            color: #555;
            margin-bottom: 8px;
        }
        .delete-account-hero .description {
            font-size: 16px;
            color: #777;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        .delete-account-hero .divider {
            width: 80px;
            height: 4px;
            background-color: #7c3aed;
            margin: 0 auto;
            border-radius: 2px;
        }
        .delete-account-info {
            padding: 60px 0 80px;
            background-color: #f9f9f9;
            text-align: center;
        }
        .delete-account-info h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
        }
        .delete-account-info p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 15px;
        }
        .delete-account-info p strong {
            color: #333;
        }
        .deletion-request-section {
            padding: 80px 0;
            background-color: #ffffff;
            text-align: left;
        }
        .deletion-form-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            display: flex;
            overflow: hidden;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }
        .deletion-img-col {
            flex: 1 1 45%;
            min-height: 400px;
            background: url("img/customer_support.png") center/cover no-repeat;
        }
        .deletion-form-col {
            flex: 1 1 55%;
            padding: 50px 60px;
        }
        .deletion-form-col h3 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
        }
        .border-input {
            width: 100%;
            border: none;
            border-bottom: 1px solid #ddd;
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 15px;
            color: #333;
            background: transparent;
            outline: none;
            transition: 0.3s;
        }
        .border-input::placeholder {
            color: #888;
            font-weight: 500;
        }
        .border-input:focus {
            border-bottom: 2px solid #7c3aed;
        }
        .submit-btn-red {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            transition: 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        }
        .submit-btn-red:hover {
            background-color: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
        }
        @media (max-width: 768px) {
            .deletion-img-col { display: none; }
            .deletion-form-col { flex: 1 1 100%; padding: 40px 30px; }
        }
        @media (max-width: 991px) {
            .delete-account-hero h1 { font-size: 44px; }
            .delete-account-hero { padding: 100px 0 50px; }
            .delete-account-info { padding: 40px 0 60px; }
        }