body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #fdfcff;
    color: #4B5563;
    box-sizing: border-box;
}

.proct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.proct-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(87.16deg, #8253C2 18.3%, #F45346 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.proct-heading-shield {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.proct-description.shield-text {
    color: #FFFFFF;
    font-weight: 400;
}

.proct-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: #6F6C90;
}

.proct-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.proct-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: var(--font-weight-700);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.proct-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 var(--font-4) 15px rgba(88, 28, 135, 0.2);
}

.proct-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(88, 28, 135, 0.3);
    color: var(--white);
}

.proct-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #450076;
}

/* Hero Section */
.proct-hero {
    padding: 2rem;
}

.proct-hero .proct-container {
    max-width: 1350px;
    background-color: #FCF6FE;
    border-radius: 50px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.proct-hero-content {
    flex-basis: 55%;
    z-index: 5;
}

.proct-hero-image {
    flex-basis: 45%;
    align-self: stretch;
}

.proct-hero-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Un-Boxed Sections */
.proct-why-choose-us,
.proct-designed-for,
.proct-secured,
.proct-features {
    padding: 5rem 2rem;
}

.proct-why-choose-us .proct-container,
.proct-designed-for .proct-container,
.proct-secured .proct-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.proct-designed-for,
.proct-secured{
    background-color: #F8F6FE;
}

.proct-shield {
    background-color: #833AAF;
}

.proct-why-choose-us-content,
.proct-designed-for-content,
.proct-secured-content {
    flex-basis: 50%;
}

.proct-why-choose-us-image,
.proct-designed-for-image,
.proct-secured-image {
    flex-basis: 50%;
    text-align: center;
}

.proct-why-choose-us-image img,
.proct-designed-for-image img,
.proct-secured-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

/* Features Section - Unboxed */
.proct-features {
    text-align: center;
}

.proct-features-heading {
    margin-bottom: 3rem;
}

.proct-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.proct-feature-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proct-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.proct-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

.proct-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
}

.proct-feature-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4B5563;
}

/* Get Started Section - Boxed */
.proct-get-started {
    padding: 5rem 2rem;
}

.proct-get-started .proct-container {
    padding: 0;
}

.proct-cta-box {
    padding: 5rem 3rem;
    background: linear-gradient(34.54deg, rgba(225, 244, 255, 0.6) 12%, rgba(249, 225, 255, 0.8) 27%, rgba(255, 230, 233, 0.6) 100%);
    text-align: center;
    border-radius: 50px;
}

.proct-cta-box .proct-heading {
    font-size: 2.5rem;
}

.proct-cta-box p {
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4E276B;
}

.proct-cta-box .proct-buttons {
    justify-content: center;
}

/* Media Queries */
@media (max-width: 992px) {
    .proct-hero .proct-container,
    .proct-why-choose-us .proct-container,
    .proct-designed-for .proct-container,
    .proct-secured .proct-container {
        flex-direction: column;
        text-align: center;
    }

    .proct-hero-content,
    .proct-why-choose-us-content,
    .proct-designed-for-content,
    .proct-secured-content {
        order: 0;
        margin-bottom: 2rem;
    }

    .proct-hero-image,
    .proct-why-choose-us-image,
    .proct-designed-for-image,
    .proct-secured-image {
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }

    .proct-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .proct-hero,
    .proct-why-choose-us,
    .proct-designed-for,
    .proct-secured,
    .proct-get-started {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .proct-why-choose-us,
    .proct-designed-for,
    .proct-secured {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .proct-hero .proct-container,
    .proct-cta-box {
        padding: 2rem;
        border-radius: 30px;
    }

    .proct-why-choose-us .proct-container,
    .proct-designed-for .proct-container,
    .proct-secured .proct-container {
       padding: 0;
    }


    .proct-heading {
        font-size: 2.25rem;
    }

    .proct-hero-image {
        min-height: 250px;
    }

    .proct-features-grid {
        grid-template-columns: 1fr;
    }
}
