/* Base Styles */

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #256B84;
    margin-bottom: 20px;
    span {
            color: #256B84;

    }
}
.container {
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shape Divider - Shared */
.shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    rotate: 180deg;
}

.shape-divider-top svg {
    width: calc(225% + 1.3px);
    height: 170px;
    display: block;
    transform: translateX(-50%) rotateY(180deg);
}

.shape-divider-top path {
    fill: #ffffff;
}

/* Hero Section */
.hero-section {
    background-color: #256B84;
    padding: 150px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .shape-divider-top path {
    fill: #ffffff;
}

/* Layout */
.hero-content,
.community-content {
    display: flex;
    flex-direction:column;
    text-align:center;
    align-items: center;
    gap: 10px;
}

.text-column {
    width:100%;
    max-width:950px;
    margin:0 auto;
    position:relative;
        padding: 10px;

     
}

.slider-column {
    flex: 1;
    padding: 10px 10px 0 10px;
     width:100%;
}

/* Builder Section */
.builder-section {
    background-color: #256B84;
    padding: 150px 0 130px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.builder-section .shape-divider-top path {
    fill: #ffffff;
}
.builder-shape-divider path {
    fill:#fafafa !important;
}
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://phase2.thetrailsliving.ca/wp-content/uploads/2023/09/bg-shape-top.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: 1;
}

.builder-content {
    max-width: 801px;
    margin: 0 auto;
    padding: 0 20px;
}

.builder-logo {
    margin-bottom: 20px;
}

.builder-logo img {
    width: 162px;
    height: 185px;
    max-width: 100%;
}

.builder-text {
    margin-bottom: 20px;
}

/* Typography - Hero */
.hero-section .text-column h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-section .text-column p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Typography - Community */
.community-section .text-column h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #256B84;
    margin-bottom: 20px;
}

.community-section .text-column p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-section .text-column p:last-child {
    margin-bottom: 0;
}

/* Typography - Builder */
.builder-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.builder-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.builder-section p:last-child {
    margin-bottom: 0;
}

/* Features Grid (Hero only) */
.features-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom:0 !important;
   
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 30%;
    flex-shrink: 0;
}

.feature-icon img {
    width: 46px;
    height: 45px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

/* Community Section */
.community-section {
    padding: 100px 0 50px 0;
    background: #fafafa;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 10px 30px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #ffffff;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #256B84;
    text-decoration:none !important;

}

 
.site-plan-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 8px;

}
 
/* Add new Slick-based image slider styles */
.image-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-slider .slick-list,
.image-slider .slick-track {
    height: 560px;
}

.gallery-slide {
    height: 560px;
    position: relative;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slick navigation for image sliders */
.image-slider .slick-prev,
.image-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 107, 132, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-slider .slick-prev:hover,
.image-slider .slick-next:hover {
    background: rgba(37, 107, 132, 1);
    transform: translateY(-50%) scale(1.1);
}

.image-slider .slick-prev {
    left: 20px;
}

.image-slider .slick-next {
    right: 20px;
}

.image-slider .slick-prev:before,
.image-slider .slick-next:before {
    content: '';
    display: none;
}

.image-slider .slick-prev svg,
.image-slider .slick-next svg {
    width: 24px;
    height: 24px;
}

/* Slick dots for image sliders */
.image-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-slider .slick-dots li {
    margin: 0;
}

.image-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-slider .slick-dots li.slick-active button {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1026px) {
    .image-slider .slick-list,
    .image-slider .slick-track,
    .gallery-slide {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .image-slider .slick-list,
    .image-slider .slick-track,
    .gallery-slide {
        height: 350px;
    }
    
    .image-slider .slick-prev,
    .image-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .image-slider .slick-prev svg,
    .image-slider .slick-next svg {
        width: 20px;
        height: 20px;
    }
}
/* Responsive Design */
@media (max-width: 1026px) {
    .hero-content,
    .community-content {
        flex-direction: column;
    }
    .hero-text-column {
        margin:0 auto; 
    }
    .hero-description {
        margin:0 auto;
        max-width:100%;
    }
    .community-content {
        flex-direction: column-reverse;
    }
    
    .text-column {
        padding: 0 20px 30px 20px;
    }
    
    .shape-divider-top svg {
        height: 90px;
    }
    
    .hero-section {
        padding: 120px 0 35px 0;
    }
    
    .community-section {
        padding: 80px 0 35px 0;
    }
    
    .builder-section {
        padding: 100px 0 35px 0;
    }
    
     
}

@media (max-width: 768px) {
    .features-grid {
         
        gap: 15px;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
    
    .text-column h2,
    .builder-section h2 {
        font-size: 2rem;
    }
    
     
    
    .builder-logo img {
        width: 100px;
        height: auto;
    }
    
    .background-overlay {
        background-position: -300px 0px;
        background-size: 1000px auto;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0 ;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
}

/* Testimonials Carousel */
.testimonials-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 15px;
}

.testimonial-slide {
    padding: 0 10px;
    margin-bottom:15px;
}

.testimonial-card {
    background-color: #F9F9F7;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    padding: 15px;
    height: 100%;
}

.testimonial-header {
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom:1px solid #e1e8ed;
}

.testimonial-cite {
    font-style: normal;
    display: block;
    line-height:1;
    margin-bottom:5px !important;
}

.testimonial-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    font-size:1rem;
}

.star-rating {
    color: #f0ad4e;
    font-size: 16px;
}

.star {
    display: inline-block;
    margin-right: 2px;
}

.testimonial-content {
    padding: 0 15px 15px 15px;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Slick Carousel Customization */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    position: absolute;
    top: auto;
    bottom:-50px;
    transform: translateY(-50%);
    background: rgba(37, 107, 132, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-carousel .slick-prev:hover,
.testimonials-carousel .slick-next:hover {
    background: rgba(37, 107, 132, 1);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-carousel .slick-prev {
    left: -50px;
}

.testimonials-carousel .slick-next {
    right: -50px;
}

.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    content: '';
    display: none;
}

.testimonials-carousel .slick-prev svg,
.testimonials-carousel .slick-next svg {
    width: 20px;
    height: 20px;
}

.testimonials-carousel .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.testimonials-carousel .slick-dots li {
    margin: 0;
}

.testimonials-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-carousel .slick-dots li.slick-active button {
    background-color: #256B84;
    transform: scale(1.2);
}

/* Responsive adjustments for testimonials */
@media (max-width: 1026px) {
    .testimonials-section {
        padding: 40px 0 0 0;
    }
    
    .testimonials-carousel .slick-prev {
        left: -30px;
    }
    
    .testimonials-carousel .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0 0 0;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
    }
    
    .testimonials-carousel .slick-prev,
    .testimonials-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-carousel .slick-prev svg,
    .testimonials-carousel .slick-next svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonials-carousel .slick-prev {
        left: -20px;
    }
    
    .testimonials-carousel .slick-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .slick-prev,
    .testimonials-carousel .slick-next {
        display: none !important;
    }
}


/* Contact Section Specific Styles */
.contact-section {
    padding: 70px 0 70px 0;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contact-left {
    flex: 1;
    padding: 0 20px 0 70px;
}

.contact-right {
    flex: 1;
}

/* Contact Typography */
.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.contact-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 320px;
}

/* Form Styles */
.contact-form {
    margin-bottom: 40px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    background-color: #F4F4F4;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px #256B84;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #256B84;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #256B84;
    font-weight: bold;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 12px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    background-color: transparent;
    border: 2px solid #666666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
    text-decoration:none !important;
}

/* Contact Info Section */
.contact-info-section {
    margin: 40px 0;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
}

.contact-info-column {
    flex: 1;
}

.contact-info-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    margin-bottom: 8px;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #256B84;
}

.contact-icon {
    margin-right: 10px;
    font-size: 15px;
}

.contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.social-icon {
    font-size: 24px;
}

/* Show Home Section */
.show-home-section {
    margin-top: 35px;
}

.show-home-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.calendly-box {
    width: 325px;
    border: 2px solid #256B84;
    border-radius: 8px;
    padding: 10px 30px 5px 5px;
}

.calendly-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
}

.calendly-link img {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.calendly-link:hover img {
    transform: scale(1.05);
}

.calendly-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 20px;
    color: #333333;
}

/* Contact Image */
.contact-image img {
    width: 100%;
    height: auto;
    max-width: 540px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1026px) {
    .contact-image img { 
        max-width:100%;
        width:100%;
    }
    .contact-content {
        flex-direction: column;
    }
    
    .contact-left {
        padding: 0 20px;
        width:100%;
    }
    .contact-image {
        width:100%;
        max-width:100%;
        margin-bottom:25px;
    }
    .contact-info-grid {
         
        gap: 30px;
    }
    
    .contact-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 0 0;
    }
    
    .contact-left {
        padding: 0 20px;
    }
    
    .calendly-box {
        width: 100%;
        max-width: 325px;
    }
    
    .contact-image img {
        max-width: 100%;
    }
}

/* FAQ Section Specific Styles */
.faq-section {
    background-color: #25282B;
    padding: 100px 0 120px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.faq-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom:20px;
}

/* FAQ Item Styles */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ffffff;
}

 
.question {
    display: block;
    padding: 15px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}
.question {
    &::after {
        font-family: FontAwesome;
        content: '\f067';
        position: absolute;
        float: right;
        right: 1rem;
        font-size: .8rem;
        color: $textColor;
        padding: 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 1px solid $textColor;
        text-align: center;
    }
}
.question:hover {
    &:hover, &:hover::after {
        cursor: pointer;
        color: white;
        text-decoration:none;
    }
     
    
    &.active {
        color: white;
         &::after { 
            font-family: 'FontAwesome';
            content: '\f068';
            color: white;
            border: 1px solid white;
        }
    }
    
}

 
.faq-item-content {
    padding: 0 20px 20px 20px;
    display: none;
}

.faq-item.active .faq-item-content {
    display: block;
}

.faq-item .faq-item-content p,
.faq-item .faq-item-content ul,
.faq-item .faq-item-content li {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.faq-item .faq-item-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-item .faq-item-content li {
    margin-bottom: 8px;
}

.faq-item .faq-item-content strong {
    color: #256B84;
}

/* Button Styles within FAQ */
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #256B84;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a4f63;
    text-decoration:none !important;
}

/* Responsive Design */
@media (max-width: 1026px) {
    .faq-section {
        padding: 80px 0 80px 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .question {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .faq-item-content {
        padding: 0 15px 15px 15px;
    }
    
    .faq-item-content p,
    .faq-item-content ul,
    .faq-item-content li {
        font-size: 16px;
    }
}

/* New Hero Section Styles */
.new-hero-section {
    background: url('https://thetrailsliving.ca/files/phase-3/3746-Morningside-HD.png') no-repeat center center ;
	background-size:cover;
	width:100%;
	height:100%;
	min-height:80vh;
    padding: 150px 0 200px 0;
    position: relative;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25,25,25, 0.4) 0%, rgba(25, 25, 25, 0.2) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    margin-top:60px;
}
/* Scroll Down Arrow Styles */
.scroll-down-landing-arrow {
  position: absolute;
  bottom: 8vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.scroll-down-landing-arrow:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(5px);
}
 
.hero-text-column {
    flex: 1;
    max-width: 950px;
}

.hero-image-column {
    flex: 1;
    /* Optional: Add background image or content */
}

/* Shape Divider Bottom */
.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
	z-index:3;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider-bottom svg {
    width: calc(225% + 1.3px);
    height: 170px;
    display: block;
    transform: translateX(-50%);
}

.shape-divider-bottom path {
    fill: #ffffff;
}

/* Selling Badge */
.selling-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #256B84;
    text-transform: uppercase;
    letter-spacing: 1px;
         background-image: url(https://phase2.thetrailsliving.ca/wp-content/uploads/2023/08/SELLING-NOW.png);
    margin: 0px 0px 20px 0px;
    padding: 5px 20px 5px 10px;
    background-position: center right;
    background-size: cover;
}

/* Hero Heading */
.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Hero Description */
.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 760px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
}

.learn-more-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.learn-more-btn:hover {
    background-color: #ffffff;
    color: #256B84;
    text-decoration:none !important;

}

.register-btn {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #256B84;
}

.register-btn:hover {
    background-color: transparent;
    color: #ffffff;
    text-decoration:none !important;

}

/* Responsive Design */
@media (max-width: 1026px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-column {
        max-width: 100%;
        margin-top:45px;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .new-hero-section {
        padding: 120px 0 150px 0;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
         gap:10px;
        align-items: center;
    }
    
    .hero-button {
        width: 160px;
    }
    
    .shape-divider-bottom svg {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .new-hero-section {
        padding: 100px 0 120px 0;
    }
     .hero-button {
        width: 130px;
        font-size:85%;
    }
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .selling-badge {
        font-size: 12px;
    }
}