	/* Custom Fonts */
	@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700&family=Syncopate:wght@400;700&display=swap');

	/* Basic Styles & Variables */
	:root {
	    --primary-accent: #00A8E8;
	    /* Bright, modern blue */
	    --secondary-dark: #2F3645;
	    /* Deep slate gray */
	    --text-color-light: #F0F2F5;
	    /* Off-white for dark backgrounds */
	    --text-color-dark: #333333;
	    /* Dark text for light backgrounds */
	    --background-light: #F8F9FA;
	    /* Very light gray */
	    --background-mid: #E0E4E8;
	    /* Mid-tone gray */
	    --font-heading: 'Syncopate', sans-serif;
	    --font-body: 'Urbanist', sans-serif;
	    --highlight-star: #FFD700;
	    /* Gold for stars */
	}



	/* --- Hero Section --- */
	.IjTFr7vRNt {
	    background: linear-gradient(135deg, var(--secondary-dark) 0%, #1a1e27 100%);
	    color: var(--text-color-light);
	    padding: 100px 20px;
	    text-align: center;
	    position: relative;
	    overflow: hidden;
	    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
	    /* Modern angled bottom */
	}

	.Euq01NUWEL {
	    max-width: 900px;
	    margin: 0 auto;
	    position: relative;
	    z-index: 2;
	}

	.Euq01NUWEL h1 {
	    font-family: var(--font-heading);
	    font-size: clamp(2.5rem, 6vw, 4.5rem);
	    margin-bottom: 25px;
	    font-weight: 700;
	    letter-spacing: 2px;
	    line-height: 1.1;
	    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	.Euq01NUWEL p {
	    font-size: clamp(1rem, 2.5vw, 1.4rem);
	    max-width: 700px;
	    margin: 0 auto;
	    font-weight: 400;
	    opacity: 0.9;
	}

	/* --- General Section Styling --- */
	.main-content {
	    max-width: 1400px;
	    margin: 0 auto;
	    padding: 0 20px;
	}

	.section-heading {
	    font-family: var(--font-heading);
	    font-size: clamp(2rem, 4vw, 3.5rem);
	    text-align: center;
	    color: var(--secondary-dark);
	    margin: 80px 0 60px 0;
	    font-weight: 700;
	    letter-spacing: 1px;
	    position: relative;
	}

	.section-heading::after {
	    content: '';
	    display: block;
	    width: 90px;
	    height: 5px;
	    background-color: var(--primary-accent);
	    margin: 20px auto 0;
	    border-radius: 3px;
	}

	/* --- Service Offerings Section --- */
	.offerings-grid {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	    gap: 40px;
	    max-width: 1200px;
	    margin: 0 auto;
	}

	.wUMzrcmGFi {
	    background-color: #fff;
	    border-radius: 12px;
	    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	    padding: 30px;
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top 0.3s ease;
	    border-top: 5px solid transparent;
	}

	.wUMzrcmGFi:hover {
	    transform: translateY(-10px);
	    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
	    border-top-color: var(--primary-accent);
	}



	.panel-icon img {
	    width: 100%;
	    height: 100%;
	    filter: invert(10%);
	    /* Makes the icon white if it's black */
	}

	.panel-title {
	    font-family: var(--font-heading);
	    font-size: 1.6rem;
	    color: var(--secondary-dark);
	    margin-bottom: 15px;
	    font-weight: 600;
	}

	.panel-description {
	    font-size: 0.95rem;
	    color: var(--text-color-dark);
	    margin-bottom: 30px;
	    flex-grow: 1;
	    /* Pushes footer to bottom */
	}

	.panel-footer {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    width: 100%;
	    padding-top: 20px;
	    border-top: 1px solid var(--background-mid);
	}

	.panel-price {
	    font-size: 1.1rem;
	    font-weight: 700;
	    color: var(--secondary-dark);
	    letter-spacing: 0.5px;
	}

	.panel-button {
	    display: inline-block;
	    padding: 10px 20px;
	    background-color: var(--secondary-dark);
	    color: var(--text-color-light);
	    text-decoration: none;
	    border-radius: 30px;
	    font-weight: 600;
	    font-size: 0.85rem;
	    transition: background-color 0.3s ease, transform 0.3s ease;
	    letter-spacing: 0.5px;
	    text-transform: uppercase;
	}

	.panel-button:hover {
	    background-color: var(--primary-accent);
	    transform: scale(1.05);
	}

	/* --- Packages Section --- */
	.cNbi5kfcNc {
	    padding: 80px 20px;
	    background-color: var(--background-mid);
	    clip-path: polygon(0, 100% 0, 100% 100%, 0% 100%);
	    /* Angled top and bottom */
	    margin-top: 60px;
	    /* Offset from services section */
	    margin-bottom: 60px;
	}

	.nTkXFSztSR {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 30px;
	    max-width: 1200px;
	    margin: 0 auto;
	}

	.package-card {
	    flex: 1 1 300px;
	    background-color: #fff;
	    border-radius: 15px;
	    padding: 40px;
	    text-align: center;
	    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    transition: transform 0.3s ease, box-shadow 0.3s ease;
	    position: relative;
	    overflow: hidden;
	}

	.package-card:hover {
	    transform: translateY(-15px);
	    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
	}

	.package-card::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 10px;
	    background-color: var(--secondary-dark);
	    transition: background-color 0.3s ease;
	}

	.package-card:hover::before {
	    background-color: var(--primary-accent);
	}

	.VsQbxMEPwk {
	    border: 3px solid var(--primary-accent);
	    transform: scale(1.08) translateY(-10px);
	    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
	    z-index: 1;
	}

	.VsQbxMEPwk::before {
	    background-color: var(--primary-accent);
	}

	.VsQbxMEPwk:hover {
	    transform: scale(1.1) translateY(-18px);
	}


	.ufs5xlMdg6 h3 {
	    font-family: var(--font-heading);
	    font-size: 1.8rem;
	    color: var(--secondary-dark);
	    margin-bottom: 10px;
	}

	.package-price {
	    font-family: var(--font-heading);
	    font-size: 2.8rem;
	    font-weight: 700;
	    color: var(--primary-accent);
	    margin-bottom: 30px;
	    display: block;
	    letter-spacing: -1px;
	}

	.package-features {
	    list-style: none;
	    padding: 0;
	    text-align: left;
	    margin-bottom: 40px;
	    flex-grow: 1;
	}

	.package-features li {
	    font-size: 1rem;
	    color: var(--text-color-dark);
	    padding: 12px 0;
	    border-bottom: 1px solid #eee;
	    position: relative;
	    padding-left: 30px;
	}

	.package-features li:last-child {
	    border-bottom: none;
	}

	.package-features li::before {
	    content: '→';
	    /* Modern arrow instead of checkmark */
	    color: var(--primary-accent);
	    font-weight: 700;
	    position: absolute;
	    left: 0;
	    font-size: 1.2rem;
	}

	.package-action-button {
	    display: inline-block;
	    padding: 15px 35px;
	    background-color: var(--secondary-dark);
	    color: var(--text-color-light);
	    text-decoration: none;
	    border-radius: 50px;
	    font-weight: 700;
	    font-size: 1rem;
	    transition: background-color 0.3s ease, transform 0.3s ease;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	}

	.package-action-button:hover {
	    background-color: var(--primary-accent);
	    transform: scale(1.08);
	}

	/* --- Testimonials Section --- */
	.GinoEpKMYM {
	    padding: 80px 20px;
	    background-color: var(--background-light);
	}

	.testimonials-slider {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	    gap: 30px;
	    max-width: 1200px;
	    margin: 0 auto;
	}

	.testimonial-bubble {
	    background-color: #fff;
	    border-radius: 20px;
	    /* More rounded, modern look */
	    padding: 35px;
	    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
	    display: flex;
	    flex-direction: column;
	    transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.testimonial-bubble:hover {
	    transform: translateY(-8px);
	    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	}

	.testimonial-bubble p {
	    font-style: italic;
	    font-size: 1.05rem;
	    color: #555;
	    margin-bottom: 25px;
	    flex-grow: 1;
	}

	.client-info {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    padding-top: 15px;
	    border-top: 1px dashed var(--background-mid);
	    /* Dashed line for subtle separation */
	}

	.client-name {
	    font-family: var(--font-heading);
	    font-size: 1.1rem;
	    font-weight: 600;
	    color: var(--secondary-dark);
	    letter-spacing: 0.5px;
	}

	.Wy7YEQAQRd {
	    color: var(--highlight-star);
	    font-size: 1.1rem;
	}

	.EwD67Nn0uD {
	    margin: 0 1px;
	}

	/* --- Responsive Adjustments --- */
	@media (max-width: 768px) {
	    .IjTFr7vRNt {
	        padding: 60px 15px;
	    }

	    .Euq01NUWEL h1 {
	        font-size: 2.5rem;
	    }

	    .Euq01NUWEL p {
	        font-size: 1rem;
	    }

	    .section-heading {
	        margin: 60px 0 40px 0;
	        font-size: 2rem;
	    }

	    .offerings-grid,
	    .nTkXFSztSR,
	    .testimonials-slider {
	        grid-template-columns: 1fr;
	        gap: 25px;
	    }
	}