/* Page Header Section */
.pg-header {
    background-image: url('images/Slider-Business.jpg');
}

/* Page Content Section - Healthy and Wealthy */
.healthy-wealthy {
    padding: 5rem 0;
    background-color: white;
}

.healthy-wealthy-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.healthy-wealthy .text-content {
    width: 100%;
    text-align: center;
}

.healthy-wealthy .text-content h2 {
    color: #0047AB;
    font-size: 3rem;
    text-align: center;
    margin: 1rem auto;
    max-width: 800px;
}

/* Business Features Grid */
.business-features {
    background-color: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
}

.feature-item {
    cursor: pointer;
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25% 1.5rem 1.5rem;
    color: white;
    z-index: 0;
}

.feature-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    z-index: -1;
    transition: 0.3s ease;
}

.feature-overlay::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(255,75,43,0.75));
    z-index: -1;
    transition: 0.5s ease;
}

.feature-item.active .feature-overlay::before, .feature-item:hover .feature-overlay::before {
    top: 100%;
}

.feature-item.active .feature-overlay::after, .feature-item:hover .feature-overlay::after {
    top: 0;
}

.feature-overlay h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

/* Business Contents Section Styles */
.business-contents {
    background-color: #fff;
    padding: 5rem 0;
    transition: opacity 0.3s ease;
}

.tab-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tab-content[style*="display: block"] {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.business-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 5rem;
}

.business-title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.business-title .highlight {
    color: #FF4B2B;  /* Bright orange-red color */
}

.business-title .dark {
    color: #142336;  /* Dark navy blue color */
}

.business-title .accent {
    color: #FF4B2B;  /* Same orange-red as highlight */
}

.business-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 20px;
}

.right-choice-banner {
    width: 100%;
    height: 500px;
    background-image: url('images/background/rightchoice.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.dxn-benefits {
    width: 100%;
    max-width: 1400px;
    margin: 5rem auto 0;
    padding: 0 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefits-text {
    flex: 1;
    text-align: justify;
    border-left: 10px solid #FF4B2B;
    padding-left: 30px;
}

.benefits-text p {
    margin: 0.5rem auto 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.comparison-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-card {
    background: white;
    padding: 0 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    flex: 1;
    text-align: left;
}

.card-content h3 {
    color: #FF4B2B;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content ul li {
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    padding-left: 0;
}

/* Marketing Plan Slider Styles */
.marketing-plan-slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    overflow: hidden;
    background: white;
}

.slide-container {
    display: flex;
    width: 100%;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.marketing-slide {
    width: 100%;
    min-width: 100%;
    flex: 0 0 auto;
    display: flex;
    gap: 2rem;
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.marketing-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content, .slide-image {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
}

.slide-content img, .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content h3 {
    color: #E74C3C;
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list ul li::before {
    content: '•';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 2rem;
}

.slide-image-wrapper {
    display: flex;
    gap: 1rem;
    height: 100%;
}

/* Update navigation arrows to match image */
.slide-arrow {
    position: absolute;
    top: 250px;
    transform: translateY(-50%);
    background: #00BFB3;
    color: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.3s ease;
}

/* Add click animation styles */
.slide-arrow.clicking {
    opacity: 0;
    transition: opacity 0.1s ease;
}

.slide-arrow:hover {
    background: #009B91;
}

.prev-slide {
    right: 11rem;
}

.next-slide {
    right: 5rem;
}

@media (max-width: 768px) {
    .marketing-slide {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .benefits-list ul li {
        font-size: 0.9rem;
    }
} 

/* Recognition Status Styles */
.recognition-status {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    display: flex;
    gap: 2rem;
}

.status-table {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-header {
    display: flex;
    background: #E74C3C;
    color: white;
    font-weight: bold;
    padding: 1rem;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.table-row:nth-child(even) {
    background: white;
}

.status-col {
    flex: 1;
    padding-right: 1rem;
    font-weight: 500;
}

.condition-col {
    flex: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .recognition-status {
        flex-direction: column;
        padding: 0 2rem 2rem;
    }

    .status-table {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .table-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .status-col, .condition-col {
        padding: 0;
    }

    .condition-col {
        font-size: 0.9rem;
    }
} 

/* Travel Opportunities Styles */
.travel-opportunities {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.travel-intro {
    margin: 0 auto 2rem;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.future-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Update layout for side-by-side content */
.travel-content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.travel-destinations {
    flex: 2;
    max-width: 50%;
}

.destination-card img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Right side content */
.travel-right-content {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.travel-cta {
    text-align: left;
}

.travel-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.travel-slogan {
    text-align: left;
}

.travel-slogan h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    color: #E74C3C;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .travel-content-wrapper {
        gap: 2rem;
    }

    .travel-slogan h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .travel-opportunities {
        padding: 0 2rem 2rem;
    }

    .travel-destinations {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .intro-text, .description {
        font-size: 1rem;
    }

    .travel-slogan h2 {
        font-size: 1.75rem;
    }
} 

/* Retirement Plan Styles */
.retirement-plan {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.retirement-intro {
    margin-bottom: 1.5rem;
}

.question {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.retirement-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.text-content {
    flex: 1;
    text-align: justify;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.retirement-benefits {
    margin-bottom: 4rem;
}

.join-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #1B365D;
}

.benefits-columns {
    display: flex;
    gap: 4rem;
    text-align: justify;
}

.benefits-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    border-left: 10px solid #E74C3C;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefit-item ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.benefit-item ul li::before {
    content: '○';
    position: absolute;
    left: -1.5rem;
    font-size: 1.25rem;
    top: 50%;
    transform: translateY(-60%);
}

.retirement-slogan {
    text-align: center;
    margin-top: 4rem;
}

.retirement-slogan h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #142336;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-columns {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .retirement-plan {
        padding: 0 2rem 2rem;
    }

    .retirement-content {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-columns {
        flex-direction: column;
    }

    .retirement-slogan h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .question, .text-content p, .join-text {
        font-size: 1rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
    }

    .retirement-slogan h2 {
        font-size: 1.75rem;
    }
} 

/* Register Now Styles */
.register-now {
    padding: 5rem 0;
    position: relative;
    z-index: 0;
}

.register-now::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #eee;
    z-index: -1;
    width: 82%;
}

.register-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.register-options {
    flex-basis: auto;
}

.register-content {
    flex-basis: 100%;
}

.register-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.register-option {
    width: 100%;
}

.register-option img {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.register-option img:hover {
    transform: scale(1.05);
}

/* Right side content */
.register-intro {
    margin-bottom: 3rem;
}

.register-intro h3 {
    font-size: 2rem;
    color: #142336;
    margin-bottom: 2rem;
    font-weight: bold;
}

.business-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.join-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.options-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.register-option p {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .register-options {
        max-width: 100%;
    }

    .register-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .register-intro h3 {
        font-size: 1.75rem;
    }

    .business-desc,
    .join-desc,
    .options-text,
    .register-option p {
        font-size: 1rem;
    }
} 

/* Update Register Methods Styles */
.register-methods {
    margin-top: 2rem;
}

.register-methods ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-methods ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-left: 1.5rem;
    position: relative;
}

.register-methods ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .register-methods ul li {
        font-size: 1rem;
    }
} 

/* Benefits Distributor Styles */
.benefits-distributor {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 5rem;
}

.benefits-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.benefits-banner {
    width: 100%;
    height: 500px;
    background-image: url('images/background/benefit.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-distributor {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-intro {
        font-size: 1.1rem;
    }
}

.idea-banner {
    width: 100%;
    height: 500px;
    background-image: url('images/background/idea.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
}

/* Idea Business Styles */
.idea-business {
    width: 100%;
    max-width: 1400px;
    margin: 5rem auto 0;
    padding: 0 5rem;
}

.idea-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.idea-columns {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: justify;
}

.idea-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 30px;
    border-left: 10px solid #E74C3C;
}

.idea-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.idea-item ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.idea-item ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

.idea-item ul li::before {
    content: '○';
    position: absolute;
    left: -1.5rem;
}

.idea-summary {
    margin-bottom: 4rem;
}

.idea-summary > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.summary-icons {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
}

.summary-item {
    flex: 1;
    text-align: center;
}

.summary-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.summary-item p:first-of-type {
    color: #E74C3C;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.summary-item p:last-of-type {
    font-size: 1rem;
    font-weight: bold;
}

.idea-contents {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: justify;
}

.idea-content-item {
    flex: 1;
    padding-left: 30px;
    border-left: 10px solid #E74C3C;
}

.idea-content-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.idea-slogan {
    text-align: center;
}

.idea-slogan h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E74C3C;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .idea-business {
        padding: 0 2rem 2rem;
    }

    .idea-columns, .idea-contents {
        flex-direction: column;
        gap: 2rem;
    }

    .summary-icons {
        flex-wrap: wrap;
    }

    .summary-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .idea-intro, .idea-item p {
        font-size: 1rem;
    }

    .idea-slogan h2 {
        font-size: 1.75rem;
    }

    .summary-icons {
        gap: 1rem;
    }
}

/* Responsive Design Breakpoints */
@media (max-width: 1200px) {
    .healthy-wealthy-container,
    .business-container,
    .marketing-plan-slider,
    .recognition-status,
    .travel-opportunities,
    .retirement-plan,
    .benefits-distributor,
    .idea-business {
        padding: 0 3rem;
    }

    .feature-item {
        height: 250px;
    }

    .dxn-benefits {
        padding: 0 3rem;
        gap: 2rem;
    }

    .comparison-card {
        padding: 0 1.5rem;
    }

    .card-icon {
        width: 120px;
        height: 120px;
    }
    
    .slide-arrow {
        width: 60px;
        height: 60px;
    }

    .next-slide {
        right: 3rem;
    }

    .prev-slide {
        right: 8rem;
    }
}

@media (max-width: 992px) {
    .healthy-wealthy-container,
    .business-container,
    .marketing-plan-slider,
    .recognition-status,
    .travel-opportunities,
    .retirement-plan,
    .benefits-distributor,
    .idea-business {
        padding: 0 2rem;
    }

    .healthy-wealthy .text-content h2 {
        font-size: 2.5rem;
    }

    .feature-item {
        height: 200px;
    }

    .dxn-benefits {
        flex-direction: column;
        padding: 0 2rem;
    }

    .benefits-text {
        order: 2;
    }

    .comparison-cards {
        order: 1;
        flex-direction: row;
        gap: 1rem;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .comparison-card {
        padding: 0 1rem;
        gap: 1rem;
        flex: 1;
    }

    .slide-content h3 {
        font-size: 1.75rem;
    }

    .slide-arrow {
        top: 270px;
        width: 50px;
        height: 50px;
    }

    .next-slide {
        right: 2rem;
    }

    .prev-slide {
        right: 6rem;
    }

    .benefits-columns,
    .idea-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .retirement-content {
        gap: 1rem;
    }

    .question, .text-content p, .retirement-intro {
        margin-bottom: 1rem;
    }

    .join-text, .retirement-benefits {
        margin-bottom: 2rem;
    }

    .retirement-slogan {
        margin-top: 2rem;
    }

    .register-container {
        padding: 0 2rem;
    }

    .benefits-distributor, .idea-columns, .idea-summary, .idea-contents {
        margin-bottom: 3rem;
    }

    .benefits-intro, .idea-intro {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .healthy-wealthy-container,
    .business-container,
    .marketing-plan-slider,
    .recognition-status,
    .travel-opportunities,
    .retirement-plan,
    .benefits-distributor,
    .idea-business {
        padding: 0 1.5rem;
    }

    .healthy-wealthy .text-content h2 {
        font-size: 2rem;
    }

    .feature-item {
        height: 150px;
    }

    .feature-overlay {
        padding: 25% 1rem 1rem;
    }

    .feature-overlay h3 {
        font-size: 1rem;
    }

    .business-title {
        font-size: 2.2rem;
    }

    .comparison-card {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto;
    }

    .card-content h3 {
        text-wrap: nowrap;
    }

    .marketing-slide {
        flex-direction: column;
    }

    .slide-image {
        order: 2;
    }

    .slide-content {
        order: 1;
    }

    .prev-slide {
        right: 6.5rem;
    }

    .next-slide {
        right: 2.5rem;
    }

    .register-now::before {
        top: 3rem;
        width: 100%;
    }

    .register-container {
        flex-direction: column;
        margin-top: -5rem;
    }

    .register-grid {
        flex-direction: row;
    }

    .register-intro {
        margin-bottom: 0;
    }

    .benefits-distributor, .idea-summary {
        margin-bottom: 2rem;
    }

    .benefits-intro, .idea-intro {
        margin-bottom: 1rem;
    }
    
    .idea-columns, .idea-contents {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .benefits-column,
    .idea-column {
        padding-left: 20px;
        border-left-width: 5px;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .healthy-wealthy-container,
    .business-container,
    .marketing-plan-slider,
    .recognition-status,
    .travel-opportunities,
    .retirement-plan,
    .benefits-distributor,
    .idea-business {
        padding: 0 1rem;
    }

    .healthy-wealthy .text-content h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        height: 100px;
    }

    .business-title {
        font-size: 1.8rem;
    }

    .business-subtitle {
        font-size: 1rem;
    }

    .comparison-cards {
        flex-direction: column;
    }

    .comparison-card {
        flex-direction: row;
    }

    .feature-overlay h3 {
        font-size: 1rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .benefits-list ul li {
        font-size: 0.9rem;
    }

    .travel-content-wrapper {
        flex-direction: column;
    }

    .destination-card img {
        max-height: 400px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content ul li {
        font-size: 0.9rem;
    }

    .register-container {
        gap: 2rem;
    }

    .register-grid {
        gap: 1rem;
    }

    .idea-slogan h2 {
        font-size: 1.5rem;
    }
}