:root {
    --primary-color: #fcbf49;
    --primary-light: #fefaec;
    --primary-dark: #e5a626;
    --secondary-color: #2c5530;
    --secondary-light: #4a7c59;
    --tertiary-color: #8b4513;
    --tertiary-light: #cd853f;
    --accent-color: #228b22;
    --accent-light: #90ee90;
    --neutral-color: #696969;
    --neutral-light: #f5f5f5;
    --info-color: #4682b4;
    --warning-color: #ff6347;
    --success-color: #32cd32;
    --text-color: #e5a626;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--neutral-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', serif;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ContentBoundary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ContentFluid {
    width: 100%;
    margin: 0;
    padding: 0;
}

.NavigationBanner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.MenuWrapper {
    padding: 15px 0;
}

.NavigationGrid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.BrandIdentity img {
    height: 45px;
    width: auto;
}

.MobileNavToggle {
    display: none;
}

.ToggleIndicator {
    display: none;
}

.BurgerIcon {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.BurgerIcon:before,
.BurgerIcon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.BurgerIcon:before {
    top: -8px;
}

.BurgerIcon:after {
    top: 8px;
}

.NavigationContainer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.MenuEntry {
    list-style: none;
}

.NavigationLink {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.NavigationLink:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .ToggleIndicator {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .NavigationContainer {
        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;
    }

    .MenuEntry {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .NavigationLink {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .MobileNavToggle:checked ~ .NavigationContainer {
        left: 0;
    }

    .MobileNavToggle:checked ~ .ToggleIndicator .BurgerIcon {
        background: transparent;
    }

    .MobileNavToggle:checked ~ .ToggleIndicator .BurgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .MobileNavToggle:checked ~ .ToggleIndicator .BurgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.HeroDisplay {
    background-size: cover;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    background-attachment: fixed;
}

.BackgroundCover::before {
    background: rgba(0, 0, 0, 0.45);
    content: "";
    position: absolute;
    height: 100vh;
    min-height: 700px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.HeroContentGrid {
    height: 100vh;
    min-height: 700px;
    position: relative;
    z-index: 1;
}

.CenterAlign {
    display: flex;
    justify-content: center;
}

.AlignVertical {
    align-items: center;
}

.TextCenter {
    text-align: center;
}

.MainHeading {
    font-size: 80px;
    font-family: "Roboto", serif;
    color: var(--text-light);
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .MainHeading {
        font-size: 40px;
    }
}

.ScrollIndicator {
    width: 100px;
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 1;
    transform: translateX(-25%);
    text-decoration: none;
}

.ScrollIcon {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.ScrollWheel {
    height: 6px;
    margin: 2px auto 0;
    display: block;
    width: 3px;
    background-color: white;
    animation: 1.6s ease infinite wheel-animation;
}

@keyframes wheel-animation {
    0% {
        margin-top: 2px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        margin-top: 20px;
        opacity: 0;
    }
}

.AboutDisplay {
    padding: 100px 0;
    background: var(--neutral-light);
}

.AboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .AboutGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.AboutVisual {
    position: relative;
    overflow: hidden;
}

.AboutVisual img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.AboutVisual:hover img {
    transform: scale(1.05);
}

.AboutContent h3 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.AboutContent p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-color);
    margin-bottom: 30px;
}

.AboutContent ul {
    margin-bottom: 40px;
    list-style: none;
}

.AboutContent ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-weight: 400;
}

.AboutContent ul li::before {
    position: absolute;
    left: 0;
    content: '✓';
    width: 16px;
    height: 16px;
    color: var(--success-color);
    font-weight: bold;
    top: 2px;
}

.ActionButton {
    background: var(--success-color);
    color: var(--text-light);
    display: inline-block;
    padding: 14px 27px;
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
}

.ActionButton:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.ServicesDisplay {
    background: var(--text-dark);
}

.ServicesTitleBanner {
    padding-top: 65px;
    padding-bottom: 67px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ServicesTitleBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ServicesHeaderGrid {
    position: relative;
    z-index: 1;
}

.SectionHeader h2 {
    color: var(--text-light);
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.SectionHeader p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

.ServicesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .ServicesGrid {
        grid-template-columns: 1fr;
    }
}

.ServiceItem {
    height: 485px;
    padding: 168px 38px 40px 65px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ServiceItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.ServiceItem:hover {
    transform: translateY(-5px);
}

.ServiceItem:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.ServiceItem h4 {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-size: 19px;
    position: relative;
    z-index: 1;
}

.ServiceItem p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.PrimaryAction {
    display: inline-block;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    padding: 0 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 165px;
    height: 48px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    line-height: 47px;
    position: relative;
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.PrimaryAction:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 191, 73, 0.4);
}

.StatisticsDisplay {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.StatisticsOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 40, 255, 0.42);
    width: 100%;
}

@media (max-width: 1199.98px) {
    .StatisticsOverlay {
        opacity: 0;
    }

    .StatisticsDisplay {
        background-position: top center !important;
    }
}

.StatsContainer {
    width: 100%;
    position: relative;
    z-index: 1;
}

.MetricsSection {
    overflow-x: hidden;
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767.98px) {
    .MetricsSection {
        padding: 100px 0;
    }
}

.MetricsRow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .MetricsRow {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .MetricsRow {
        grid-template-columns: 1fr;
    }
}

.MetricBlock {
    display: block;
    width: 100%;
}

.NumberCounter {
    font-weight: 700;
    font-size: 51px;
    color: var(--text-light);
    display: block;
    position: relative;
    font-family: "Roboto", Arial, sans-serif;
}

.MetricData span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .MetricWrapper {
        margin-bottom: 22px;
    }
}

.TestimonialsArea {
    padding: 88px 0;
}

.LightBackground {
    background-color: var(--primary-light) !important;
}

.TestimonialsHeader {
    margin-bottom: 60px;
}

.HeaderWrapper h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.HeaderWrapper p {
    font-size: 16px;
    color: var(--neutral-color);
    line-height: 1.6;
}

.TestimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .TestimonialsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.TestimonialContent {
    background: var(--text-light);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.TestimonialContent:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.TestimonialContent blockquote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.TestimonialAuthor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.AuthorImage {
    width: 52px;
    height: 52px;
    object-fit: cover;
    flex: 0 0 52px;
}

.TestimonialAuthor span {
    font-weight: 600;
    color: var(--text-dark);
}

.GalleryArea {
    padding: 120px 0;
    background: var(--neutral-light);
}

@media (max-width: 991.98px) {
    .GalleryArea {
        padding: 60px 0;
    }
}

.GalleryHeader {
    margin-bottom: 60px;
}

.SectionTitle {
    font-size: 48px;
    font-family: "Roboto", serif;
    color: var(--text-dark);
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .SectionTitle {
        font-size: 32px;
    }
}

.SectionDescription {
    font-size: 18px;
    font-weight: 300;
    color: var(--neutral-color);
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .SectionDescription {
        font-size: 16px;
    }
}

.GallerySlider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 30px 0;
    scroll-behavior: smooth;
}

.SliderFrame {
    flex: 0 0 300px;
    height: 200px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.SliderFrame:hover {
    opacity: 1;
    transform: scale(1.05);
}

.GalleryImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.GalleryAction {
    margin-top: 40px;
}

.ViewMoreLink {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.ViewMoreLink:hover {
    color: var(--primary-dark);
}

.FooterSection {
    font-size: 16px;
    padding: 120px 0 0;
    background: var(--text-dark);
    position: relative;
}

.BackgroundDark {
    background: var(--text-dark) !important;
}

.FooterGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .FooterGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.FooterHeading {
    font-weight: normal;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.FooterWidget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.SocialLinks {
    list-style: none;
    display: flex;
    gap: 10px;
}

.SocialLinks li a {
    height: 50px;
    width: 50px;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.SocialLinks li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.SocialIcon {
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
}

.FooterLinks {
    list-style: none;
}

.FooterLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.FooterLink:hover {
    color: var(--text-light);
}

.ContactInfo ul {
    list-style: none;
}

.ContactInfo li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

.ContactIcon {
    width: 20px;
    margin-right: 15px;
    font-size: 16px;
    color: var(--text-light);
    flex-shrink: 0;
}

.ContactText {
    color: rgba(255, 255, 255, 0.7);
}

.ContactInfo a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ContactInfo a:hover {
    color: var(--text-light);
}

.FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.FooterCopyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.BackgroundStyle {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

.SmoothScroll {
    scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
    .AboutContent {
        padding-left: 0;
    }

    .AboutGrid {
        text-align: center;
    }
}

.ContactFormArea {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--neutral-light) 100%);
    position: relative;
}

.BackgroundGradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fcbf49" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.ContactHeaderSection {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.ContactMainTitle {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-family: 'Roboto', serif;
}

.ContactSubtitle {
    font-size: 18px;
    color: var(--neutral-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.ContactInfoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ContactInfoGrid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
}

.ContactDetailCard {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 191, 73, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ContactDetailCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
}

.ContactDetailCard:hover::before {
    left: 100%;
}

.ContactDetailCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(252, 191, 73, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.ContactIconWrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ContactDetailCard:hover .ContactIconWrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-dark);
}

.ContactIcon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ContactLabel {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ContactValue {
    color: var(--neutral-color);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}

.ContactValue a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ContactValue a:hover {
    color: var(--primary-dark);
}

.FormContainerWrapper {
    position: relative;
    z-index: 1;
}

.ContactFormContainer {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(252, 191, 73, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ContactFormContainer {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

.ContactFormContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--accent-color));
}

.FormFieldGroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .FormFieldGroup {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.InputWrapper {
    position: relative;
}

.FullWidth {
    grid-column: 1 / -1;
}

.StyledFormInput,
.StyledFormSelect,
.StyledFormTextarea {
    width: 100%;
    padding: 15px 0 10px 0;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(150, 150, 150, 0.3);
    outline: none;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
}

.StyledFormInput:focus,
.StyledFormSelect:focus,
.StyledFormTextarea:focus {
    border-bottom-color: var(--primary-color);
}

.StyledFormInput::placeholder,
.StyledFormTextarea::placeholder {
    color: rgba(150, 150, 150, 0.7);
    transition: all 0.3s ease;
}

.StyledFormInput:focus::placeholder,
.StyledFormTextarea:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}

.StyledFormSelect {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 16px;
    cursor: pointer;
}

.StyledFormTextarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'PT Sans', sans-serif;
}

.InputUnderline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.InputWrapper:focus-within .InputUnderline {
    width: 100%;
}

.FormSubmitWrapper {
    text-align: center;
    margin-top: 40px;
}

.SubmitActionButton {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'PT Sans', sans-serif;
}

.SubmitActionButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.SubmitActionButton:hover::before {
    left: 100%;
}

.SubmitActionButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 191, 73, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
}

.SubmitActionButton:active {
    transform: translateY(0);
}

.ButtonIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.SubmitActionButton:hover .ButtonIcon {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .ContactMainTitle {
        font-size: 28px;
    }

    .ContactSubtitle {
        font-size: 16px;
    }

    .SubmitActionButton {
        padding: 15px 35px;
        font-size: 14px;
    }
}

.ThankYouHero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--neutral-light) 50%, var(--accent-light) 100%);
    position: relative;
}

.ThankYouContainer {
    min-height: 60vh;
}

.SuccessIconWrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.SuccessIcon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.ThankYouTitle {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: 'Roboto', serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ThankYouTitle {
        font-size: 32px;
    }
}

.ThankYouMessage {
    font-size: 18px;
    color: var(--neutral-color);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 50px;
}

.NextStepsContainer {
    margin: 60px 0;
}

.NextStepsTitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.StepsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .StepsGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.StepItem {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.StepItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.StepNumber {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Roboto', serif;
}

.StepItem h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.StepItem p {
    font-size: 14px;
    color: var(--neutral-color);
    line-height: 1.5;
    margin: 0;
}

.ActionButtonsWrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .ActionButtonsWrapper {
        flex-direction: column;
        align-items: center;
    }
}

.PrimaryReturnButton,
.SecondaryActionButton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'PT Sans', sans-serif;
}

.PrimaryReturnButton {
    background: var(--primary-color);
    color: white;
}

.PrimaryReturnButton:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 191, 73, 0.4);
}

.SecondaryActionButton {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.SecondaryActionButton:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.ButtonIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.SecondaryActionButton .ButtonIcon {
    filter: none;
    transition: filter 0.3s ease;
}

.SecondaryActionButton:hover .ButtonIcon {
    filter: brightness(0) invert(1);
}

.AdditionalInfoSection {
    padding: 80px 0;
    background: var(--neutral-light);
}

.InfoCardsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .InfoCardsGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.InfoCard {
    text-align: center;
    padding: 35px 25px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.InfoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.CardIconWrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.InfoCard:hover .CardIconWrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.CardIcon {
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease;
}

.InfoCard:hover .CardIcon {
    filter: brightness(0) invert(1);
}

.InfoCard h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.InfoCard p {
    font-size: 15px;
    color: var(--neutral-color);
    line-height: 1.6;
    margin: 0;
}