/* Base Styles */
:root {
    --primary-color: #ff006e;
    --light-shade: #ffe6f2;
    --dark-shade: #b8004f;
    --text-color: #333333;
    --background-color: #ffffff;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    color: var(--dark-shade);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.441em;
}

h2 {
    font-size: 1.953em;
}

h3 {
    font-size: 1.563em;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-padding);
}

/* Buttons */
.Button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.PrimaryButton {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.PrimaryButton:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.SecondaryButton {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.SecondaryButton:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Navigation */
.main_menu {
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--primary-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: block;
    }

    .navbar-nav {
        display: flex;
        gap: 30px;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-shade);
}

@media screen and (max-width: 768px) {
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }
}

/* Hero Section */
.HeroSection {
    background-color: var(--light-shade);
    padding: 100px 0;
}

.HeroContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.HeroText {
    flex: 1;
}

.HeroText h1 {
    margin-bottom: 20px;
}

.HeroText p {
    margin-bottom: 30px;
    font-size: 18px;
}

.HeroImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

/* Featured Products */
.FeaturedProducts {
    background-color: #ffffff;
}

.FeaturedProducts h2 {
    text-align: center;
    margin-bottom: 50px;
}

.ProductGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ProductCard {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ProductCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ProductImage {
    height: 200px;
    overflow: hidden;
}

.ProductImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ProductInfo {
    padding: 20px;
    background-color: #ffffff;
}

.ProductInfo h3 {
    margin-bottom: 15px;
}

.ProductInfo p {
    margin-bottom: 20px;
}

/* Services Section */
.ServicesSection {
    background-color: var(--light-shade);
}

.ServicesSection h2 {
    text-align: center;
    margin-bottom: 50px;
}

.ServiceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ServiceCard {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ServiceImage {
    height: 250px;
    overflow: hidden;
}

.ServiceImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ServiceInfo {
    padding: 30px;
}

.ServiceInfo h3 {
    margin-bottom: 15px;
}

.ServiceInfo p {
    margin-bottom: 15px;
}

.ServicePrice {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

/* About Section */
.AboutSection {
    background-color: #ffffff;
}

.AboutContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.AboutImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.AboutText {
    flex: 1;
}

.AboutText p {
    margin-bottom: 20px;
}

/* Conference Section */
.ConferenceSection {
    background-color: var(--light-shade);
}

.ConferenceContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ConferenceText {
    flex: 1;
}

.ConferenceText h3 {
    margin-top: -10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ConferenceDetails {
    margin: 25px 0;
    padding-left: 20px;
}

.ConferenceDetails li {
    margin-bottom: 10px;
}

.ConferenceImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

/* Testimonials */
.TestimonialsSection {
    background-color: #ffffff;
}

.TestimonialsSection h2 {
    text-align: center;
    margin-bottom: 50px;
}

.TestimonialGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.TestimonialCard {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.TestimonialText {
    font-style: italic;
    margin-bottom: 20px;
}

.TestimonialAuthor {
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact CTA */
.ContactCTA {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.CTAContent {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.CTAContent h2 {
    color: #ffffff;
}

.CTAContent p {
    color: #ffffff;
    margin-bottom: 30px;
}

.CTAButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.CTAButtons .Button {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
}

.CTAButtons .Button:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Footer */
.MainFooter {
    background-color: #333333;
    color: #ffffff;
    padding: 80px 0 30px;
}

.FooterGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.FooterLogo img {
    height: 40px;
    margin-bottom: 15px;
}

.FooterLinks h3, .FooterContact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.FooterLinks ul {
    list-style: none;
}

.FooterLinks ul li {
    margin-bottom: 10px;
}

.FooterLinks ul li a, .FooterContact a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.FooterLinks ul li a:hover, .FooterContact a:hover {
    color: var(--primary-color);
}

.FooterContact p {
    margin-bottom: 10px;
}

.FooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .HeroContent, .AboutContent, .ConferenceContent {
        flex-direction: column;
    }

    .HeroText, .AboutText, .ConferenceText {
        order: 1;
    }

    .HeroImage, .AboutImage, .ConferenceImage {
        order: 2;
        margin-top: 30px;
    }

    .HeroSection {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    .ProductGrid, .ServiceGrid, .TestimonialGrid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .CTAButtons {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 40px 0;
    }

    .HeroSection {
        padding: 60px 0;
    }

    .HeroText p {
        font-size: 16px;
    }

    .TestimonialCard {
        padding: 20px;
    }
}

/* Premium Tech Experience CTA Section */
.TechExperienceCTA {
    background: linear-gradient(135deg, #ffe6f2 0%, #ffb3d9 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.TechCTAContent {
    position: relative;
    z-index: 2;
}

.TechCTAInner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.TechCTALeft {
    flex: 1;
    max-width: 600px;
}

.TechCTALeft h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.TechCTALeft h2 span {
    color: var(--primary-color);
    position: relative;
}

.TechCTALeft h2 span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
    opacity: 0.3;
    border-radius: 4px;
}

.TechCTALeft p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.TechCTAFeatures {
    margin-bottom: 40px;
}

.TechCTAFeature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.FeatureNumber {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.7;
    margin-right: 15px;
    line-height: 1;
}

.FeatureInfo h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

.FeatureInfo p {
    font-size: 16px;
    margin-bottom: 0;
}

.GradientButton {
    background: linear-gradient(45deg, var(--primary-color) 0%, #ff5c93 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.GradientButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

.TechCTARight {
    flex: 1;
    display: flex;
    justify-content: center;
}

.TechCTACard {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transform: rotate(2deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.TechCTACard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff5c93 100%);
}

.TechCTACard:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
}

.TechCTACard:hover {
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.CardContent {
    padding: 40px 30px;
}

.CardIcon {
    width: 70px;
    height: 70px;
    background-color: var(--light-shade);
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
}

.CardIcon:before, .CardIcon:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
}

.CardIcon:before {
    width: 30px;
    height: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
}

.CardIcon:after {
    width: 5px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
}

.TechCTACard h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
}

.CardPricing {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.OldPrice {
    color: #999;
    font-size: 1.2em;
    text-decoration: line-through;
    margin-right: 15px;
}

.NewPrice {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 700;
}

.CardFeatures {
    list-style: none;
    margin-bottom: 30px;
}

.CardFeatures li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.CardFeatures li:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--light-shade);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 5px;
}

.OutlineButton {
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 9999px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.OutlineButton:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Form Section */
.ContactSection {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.ContactSection:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--light-shade);
    z-index: 0;
}

.ContactContent {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 50px;
}

.ContactInfo {
    flex: 1;
    padding: 50px;
    background-color: var(--light-shade);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ContactInfo:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    top: -100px;
    left: -100px;
}

.ContactInfo:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    bottom: -50px;
    right: -50px;
}

.ContactInfo h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.ContactSubtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.ContactDetails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.ContactItem h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.ContactItem h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.ContactItem p {
    line-height: 1.8;
    color: #555;
}

.ContactItem a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ContactItem a:hover {
    color: var(--dark-shade);
}

.ContactFormWrapper {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ContactFormWrapper:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.ContactForm {
    padding: 50px;
}

.FormGroup {
    margin-bottom: 25px;
}

.FormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.FormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.FormGroup input,
.FormGroup select,
.FormGroup textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eeeeee;
    border-radius: 9999px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: all 0.3s ease;
}

.FormGroup textarea {
    border-radius: 20px;
    resize: none;
}

.FormGroup input:focus,
.FormGroup select:focus,
.FormGroup textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.CheckboxGroup {
    display: flex;
    align-items: center;
}

.CheckboxGroup input {
    width: auto;
    margin-right: 10px;
}

.CheckboxGroup label {
    margin-bottom: 0;
    font-size: 14px;
}

.SubmitButton {
    background: linear-gradient(45deg, var(--primary-color) 0%, #ff5c93 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.SubmitButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

/* Responsive design for new sections */
@media screen and (max-width: 991px) {
    .TechCTAInner {
        flex-direction: column;
    }

    .TechCTALeft {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .ContactContent {
        flex-direction: column;
    }

    .ContactInfo, .ContactFormWrapper {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .TechExperienceCTA, .ContactSection {
        padding: 70px 0;
    }

    .TechCTALeft h2 {
        font-size: 2em;
    }

    .ContactInfo, .ContactForm {
        padding: 30px;
    }

    .FormRow {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .TechCTAFeature {
        flex-direction: column;
    }

    .FeatureNumber {
        margin-bottom: 10px;
    }

    .ContactItem h3 {
        font-size: 1.2em;
    }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.ServicesHeroSection {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5c93 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.ServicesHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.ServicesHeroContent h1 {
    font-size: 3em;
    margin-bottom: 30px;
    color: white;
    position: relative;
    display: inline-block;
}

.ServicesHeroContent h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: white;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ServicesHeroContent p {
    font-size: 1.2em;
    line-height: 1.8;
    opacity: 0.9;
}

/* Services Details Section */
.ServicesDetailsSection {
    padding: 100px 0;
    background-color: #ffffff;
}

.ServiceDetailCard {
    display: flex;
    margin-bottom: 80px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ServiceDetailCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ServiceDetailCard:last-child {
    margin-bottom: 0;
}

.ServiceDetailImage {
    flex: 1;
    max-width: 40%;
    overflow: hidden;
}

.ServiceDetailImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.ServiceDetailCard:hover .ServiceDetailImage img {
    transform: scale(1.05);
}

.ServiceDetailContent {
    flex: 1.5;
    padding: 50px;
}

.ServiceDetailContent h2 {
    font-size: 2em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.ServiceDetailContent h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.ServiceDetailPrice {
    font-size: 1.4em;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.ServiceDetailContent p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.ServiceDetailFeatures {
    background-color: var(--light-shade);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.ServiceDetailFeatures h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
}

.ServiceDetailFeatures ul {
    padding-left: 20px;
}

.ServiceDetailFeatures ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.ServiceDetailFeatures ul li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 8px;
}

/* Services CTA */
.ServicesCTA {
    background-color: var(--light-shade);
    padding: 100px 0;
}

.ServicesCTAContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ServicesCTAImage {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ServicesCTAImage img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.ServicesCTAImage:hover img {
    transform: scale(1.05);
}

.ServicesCTAText {
    flex: 1;
}

.ServicesCTAText h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

.ServicesCTAText p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

/* Responsive designs for Services page */
@media screen and (max-width: 991px) {
    .ServiceDetailCard {
        flex-direction: column;
    }

    .ServiceDetailImage {
        max-width: 100%;
    }

    .ServicesCTAContent {
        flex-direction: column;
    }

    .ServicesCTAImage {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .ServicesHeroSection {
        padding: 80px 0;
    }

    .ServicesHeroContent h1 {
        font-size: 2.5em;
    }

    .ServicesDetailsSection {
        padding: 60px 0;
    }

    .ServiceDetailCard {
        margin-bottom: 50px;
    }

    .ServiceDetailContent {
        padding: 30px;
    }

    .ServiceDetailContent h2 {
        font-size: 1.8em;
    }

    .ServicesCTA {
        padding: 60px 0;
    }

    .ServicesCTAText h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 576px) {
    .ServicesHeroSection {
        padding: 60px 0;
    }

    .ServicesHeroContent h1 {
        font-size: 2em;
    }

    .ServiceDetailFeatures {
        padding: 20px;
    }
}

.ThankYouSection {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-shade) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ThankYouSection:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    top: -150px;
    left: -150px;
}

.ThankYouSection:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    bottom: -100px;
    right: -100px;
}

.ThankYouCard {
    background-color: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.ThankYouCard:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff5c93 100%);
    top: 0;
    left: 0;
}

.ThankYouIcon {
    width: 100px;
    height: 100px;
    background-color: var(--light-shade);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ThankYouIcon:before, .ThankYouIcon:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
}

.ThankYouIcon:before {
    width: 40px;
    height: 15px;
    border-radius: 3px;
    transform: rotate(45deg);
    bottom: 40px;
    left: 27px;
}

.ThankYouIcon:after {
    width: 15px;
    height: 60px;
    border-radius: 3px;
    transform: rotate(45deg);
    bottom: 25px;
    right: 27px;
}

.ThankYouCard h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

.ThankYouCard p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.HomeButton {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary-color) 0%, #ff5c93 100%);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.HomeButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

@media screen and (max-width: 768px) {
    .ThankYouCard {
        padding: 40px 30px;
    }

    .ThankYouCard h1 {
        font-size: 2em;
    }
}

/* Cookie Banner Styles */
.CookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #b8004f 0%, #ff006e 100%);
    color: white;
    padding: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.CookieBanner.show {
    transform: translateY(0);
}

.CookieContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.CookieBanner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    pointer-events: none;
}

.CookieContent {
    flex: 1;
    min-width: 250px;
    padding-right: 20px;
}

.CookieMessage {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.CookieActions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.AcceptButton {
    background-color: white;
    color: var(--dark-shade);
    border: none;
    padding: 10px 25px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.AcceptButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.PrivacyLink {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.PrivacyLink:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .CookieContainer {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .CookieContent {
        padding-right: 0;
        margin-bottom: 15px;
    }
}