style-broken

<Style>
  .page-id-1018 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .page-id-1018 body {
            font-family: ‘Arial’, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .page-id-1018 #dc-policies {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .page-id-1018 .dc-wrap {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Navigation Tabs */
        .page-id-1018 .dc-tabs {
            display: flex;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .page-id-1018 .dc-tab {
            flex: 1;
            padding: 20px;
            text-decoration: none;
            color: white;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            background: transparent;
        }

        .page-id-1018 .dc-tab:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .page-id-1018 .dc-tab.active {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Promo Section */
        .page-id-1018 #promo {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        .page-id-1018 .dc-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-id-1018 .dc-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .page-id-1018 .dc-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-weight: bold;
            backdrop-filter: blur(10px);
        }

        /* Promo Image */
        .page-id-1018 #promo-image {
            padding: 40px 20px;
            text-align: center;
            background: #f8f9fa;
        }

        .page-id-1018 .dc-media img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Sections */
        .page-id-1018 section {
            padding: 40px 20px;
            border-bottom: 1px solid #eee;
        }

        .page-id-1018 section:last-child {
            border-bottom: none;
        }

        .page-id-1018 section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .page-id-1018 section h2::after {
            content: ”;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .page-id-1018 .dc-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            line-height: 1.8;
        }

        /* Application Section */
        .page-id-1018 #application .dc-card {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
        }

        .page-id-1018 #application .dc-card a {
            color: white;
            text-decoration: underline;
        }

        /* Bank Statement Section */
        .page-id-1018 #bank-statement .dc-card {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            color: white;
        }

        .page-id-1018 #bank-statement .dc-card a {
            color: white;
            text-decoration: underline;
        }

        .page-id-1018 #bank-statement .dc-card ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .page-id-1018 #bank-statement .dc-card li {
            margin: 10px 0;
        }

        /* CTA Button */
        .page-id-1018 .dc-cta {
            display: inline-block;
            background: #27ae60;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

        .page-id-1018 .dc-cta:hover {
            background: #229954;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
        }

        /* Address Styling */
        .page-id-1018 address {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-style: normal;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-id-1018 .dc-tabs {
                flex-direction: column;
            }

            .page-id-1018 .dc-hero h1 {
                font-size: 2rem;
            }

            .page-id-1018 .dc-badges {
                flex-direction: column;
                align-items: center;
            }

            .page-id-1018 .dc-card {
                padding: 20px;
            }
        }

        /* Smooth Scrolling */
        .page-id-1018 html {
            scroll-behavior: smooth;
        }
</style>