/* Root variables for colors, fonts, spacing */
:root {
    --primary-color: #2a7ae2;
    --secondary-color: #f5f5f5;
    --accent-color: #ffb300;
    --text-color: #222;
    --font-family: 'Inter', sans-serif;
    --border-radius: 8px;
    --spacing: 1rem;
}

/* Reset default styles */
* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    background-color: var(--secondary-color);
}

/* Container for consistent padding and max-width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Flex utility class */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero section */
.hero {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 501px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 1rem;
}

.hero h1 {
    letter-spacing: -0.04em;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    line-height: 1em;
}

/* Navigation */
#navbar {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    position: relative;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-start;
}

.nav-left .logo a {
    font-weight: 700;
    color: black;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.nav-left ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-left li a {
    text-decoration: none;
    color: #999;
    padding: 0.5rem 0.75rem;
    font-size: 1.1rem;
}

.navbar-btn {
    padding: 0.5rem 0.625rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    max-width: 7.5rem;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    margin-right: 1rem;
}

.navbar-btn:hover {
    background-color: #333;
}

/* Underheading section */
#underheading {
    margin-bottom: 4rem;
}

#underheading h1 {
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
    font-size: 32px;
    max-width: 50%;
    letter-spacing: -0.03em;
    line-height: 1em;
    font-weight: 800;
    word-wrap: break-word;
}

/* Welcome section */
#Welcome {
    margin-bottom: 4rem;
}

.welcome-text {
    max-width: 680px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-text h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
}

.welcome-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    color: #777777;
}

/* Program section */
.program-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem 1.5rem;
    justify-items: center;
}

.noname-card img {
    width: 280px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.noname-card h3 {
    font-weight: 600;
    font-size: 20px;
    margin: 0.5rem 0;
}

.noname-card p {
    color: #999999;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    max-width: 220px;
}

/* Accommodation section */
#accomindation {
    margin-bottom: 4rem;
}

#Sanctuary {
    margin-bottom: 4rem;
}

.accommodation-card img {
    width: 470px;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
}

.accommodation-card h3 {
    font-weight: 650;
    font-size: 24px;
    margin: 10px 0;
}

.accommodation-card p {
    font-size: 22px;
    color: #999999;
    line-height: 1.2em;
    font-weight: 500;
    max-width: 400px;
}

.accommodation-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem 5rem;
    justify-content: center;
    padding: 4rem 2rem;
}

/* Beach image */
.beach-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 100px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/* Icons grid */
#pnjeez {
    margin-bottom: 4rem;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 80px;
    justify-items: center;
    padding: 60px 20px;
}

.icon-item {
    text-align: center;
}

.icon-item img {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    margin: 0 auto 12px;
    display: block;
}

.icon-item p {
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

/* Testimonials section */
#testimonials {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 30px 25px;
}

.testimonial-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 24px;
}

.testimonial-card .name {
    font-weight: 600;
    font-size: 17px;
}

.testimonial-card .role {
    color: #999999;
    font-size: 17px;
}

/* Quote section */
#quote {
    text-align: center;
    margin-bottom: 4rem;
}

#quote h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1em;
    color: #000;
    margin: 100px auto 24px;
    max-width: 600px;
}

#quote p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2em;
    color: #777777;
    margin: 0 auto 60px;
    max-width: 600px;
}

/* Pricing section */
#Pricing {
    margin-bottom: 4rem;
}

.pricing-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #999999;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px 24px;
    width: 100%;
    max-width: 340px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card .price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.btn-price {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background-color: #000;
    color: #fff;
}

/* FAQ section */
#FAQ {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin: 3rem 0 4rem;
}

.faq-item {
    width: 400px;
    margin: 0 auto 0.5rem;
}

.faq-question {
    width: 100%;
    background: #f1f1f1;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-color);
}

.faq-question::before {
    content: '+';
    margin-right: 10px;
    font-weight: bold;
    color: #888;
}

.faq-item.active .faq-question::before {
    content: '-';
}

.faq-question:hover {
    background-color: #e5e5e5;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.4s ease;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 1rem;
}

/* Contact section */
#Contact {
    margin-bottom: 4rem;
}

.contact-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 300px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: none;
    background-color: #eee;
    font-size: 16px;
}

#Text.form-input {
    height: 120px;
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #222;
}

/* Footer */
#footer {
    max-width: 100%;
    min-width: 0;
    margin: 2rem auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

#footer .logo {
    margin-bottom: 1rem;
}

#footer .logo a {
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-right .contact-info h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-right .contact-info p,
.footer-right .contact-info address {
    color: #777;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.footer-right .links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-right .links h4,
.footer-right .links p,
.footer-right .links a {
    font-size: 0.9rem;
    color: #777;
    text-decoration: none;
    margin: 0.2rem 0;
}

.footer-right .links a:hover {
    color: #000;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    #navbar {
        padding: 0.5rem 1.5rem;
        max-width: 90%;
        margin: 0 auto;
        justify-content: space-between;
    }

    .nav-left {
        flex-direction: row;
        gap: 2.5rem;
        justify-content: flex-start;
    }

    .nav-left .logo a {
        font-size: 1rem;
    }

    .nav-left ul {
        display: none;
    }

    .nav-left li a {
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
    }

    .navbar-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
        max-width: 8.75rem;
        text-align: center;
        white-space: nowrap;
        margin: 0 0;
        display: inline-block;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }

    .navbar-btn:hover {
        background-color: #333;
    }

    #footer {
        padding: 1rem;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footer .logo {
        margin-bottom: 0.8rem;
    }

    .footer-right {
        gap: 0.5rem;
    }

    .footer-right .links {
        justify-content: center;
        gap: 1rem;
    }

    .hero img {
        height: auto;
        max-height: 70vh;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        padding: 0.5rem;
        white-space: normal;
        overflow-wrap: break-word;
    }

    #underheading {
        margin-bottom: 2rem;
    }

    #underheading h1 {
        max-width: 95%; /* Увеличено для мобильных */
        font-size: 26px;
        padding: 1rem;
    }

    #Welcome {
        margin-bottom: 2rem;
    }

    .welcome-text {
        padding: 2rem 0;
    }

    .welcome-text h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .welcome-text p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .program-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(150px, auto);
        gap: 1rem;
    }

    .noname-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .noname-card h3 {
        font-size: 16px;
    }

    .noname-card p {
        font-size: 12px;
        max-width: 90%;
    }

    #accomindation {
        margin-bottom: 2rem;
    }

    #Sanctuary {
        margin-bottom: 2rem;
    }

    .accommodation-grid {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .accommodation-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

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

    #pnjeez {
        margin-bottom: 2rem;
    }

    .icons-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(100px, auto);
        gap: 20px 40px;
    }

    .icon-item img {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }

    .icon-item p {
        font-size: 16px;
    }

    #testimonials {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

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

    .testimonial-card {
        padding: 20px 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonial-card h1 {
        font-size: 18px;
    }

    .testimonial-card .name,
    .testimonial-card .role {
        font-size: 14px;
    }

    #quote {
        margin-bottom: 2rem;
    }

    #quote h1 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin: 50px auto 12px;
    }

    #quote p {
        font-size: clamp(1rem, 3vw, 1.4rem);
    }

    #Pricing {
        margin-bottom: 2rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .btn-price {
        padding: 12px 24px;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        font-size: 14px;
        display: block;
        background-color: #000;
        color: #fff;
    }

    #Contact {
        margin-bottom: 2rem;
    }

    .form-group {
        width: 100%;
        max-width: 400px;
    }

    #FAQ {
        margin-bottom: 2rem;
    }

    .faq-item {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 430px) {
    #navbar {
        padding: 0.5rem 1.5rem;
        max-width: 90%;
        margin: 0 auto;
        justify-content: space-between;
    }

    .nav-left {
        gap: 3rem;
        justify-content: flex-start;
    }

    .nav-left .logo a {
        font-size: 0.875rem;
    }

    .nav-left ul {
        display: none;
    }

    .nav-left li a {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    .navbar-btn {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
        max-width: 6.5rem;
        text-align: center;
        white-space: nowrap;
        margin: 0 0;
        display: inline-block;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }

    .navbar-btn:hover {
        background-color: #333;
    }

    #footer {
        padding: 0.8rem;
    }

    #footer .logo {
        margin-bottom: 0.8rem;
    }

    .hero img {
        width: 413px;
        height: 284px;
        object-fit: cover;
        margin: 0 auto;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 0.3rem;
        line-height: 1.1em;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .hero-text h1 + p {
        font-size: 30px;
        line-height: 1.1em;
    }

    #underheading {
        margin-bottom: 1.5rem;
    }

    #underheading h1 {
        max-width: 95%; /* Увеличено для мобильных */
        font-size: 26px;
        padding: 1rem;
    }

    #Welcome {
        margin-bottom: 1.5rem;
    }

    .noname-card img {
        height: 120px;
    }

    .noname-card h3 {
        font-size: 14px;
    }

    .noname-card p {
        font-size: 10px;
    }

    #accomindation {
        margin-bottom: 1.5rem;
    }

    #Sanctuary {
        margin-bottom: 1.5rem;
    }

    .accommodation-card img {
        height: 200px;
    }

    #pnjeez {
        margin-bottom: 1.5rem;
    }

    .icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .icon-item img {
        width: 25px;
        height: 25px;
    }

    .icon-item p {
        font-size: 14px;
    }

    #testimonials {
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        padding: 15px 10px;
    }

    .testimonial-card h3 {
        font-size: 16px;
    }

    .testimonial-card .name,
    .testimonial-card .role {
        font-size: 12px;
    }

    #quote {
        margin-bottom: 1.5rem;
    }

    #quote h1 {
        font-size: clamp(1rem, 3.5vw, 1.6rem);
    }

    #quote p {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

    #Pricing {
        margin-bottom: 1.5rem;
    }

    .btn-price {
        padding: 12px 24px;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        font-size: 12px;
        display: block;
        background-color: #000;
        color: #fff;
    }

    #Contact {
        margin-bottom: 1.5rem;
    }

    .form-input {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .submit-button {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    #FAQ {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 320px) {
    #navbar {
        padding: 0.5rem 1.5rem;
        max-width: 90%;
        margin: 0 auto;
        justify-content: space-between;
    }

    .nav-left {
        gap: 2.5rem;
        justify-content: flex-start;
    }

    .nav-left .logo a {
        font-size: 0.625rem;
    }

    .nav-left ul {
        display: none;
    }

    .nav-left li a {
        padding: 0.125rem 0.25rem;
        font-size: 0.75rem;
    }

    .navbar-btn {
        padding: 0.25rem 0.375rem;
        font-size: 0.625rem;
        max-width: 5rem;
        text-align: center;
        white-space: nowrap;
        margin: 0 0;
        display: inline-block;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }

    .navbar-btn:hover {
        background-color: #333;
    }

    #footer {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    #footer .logo {
        margin-bottom: 0.8rem;
    }

    .hero img {
        width: 303px;
        height: 225px;
        object-fit: cover;
        margin: 0 auto;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 0.3rem;
        line-height: 1.1em;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .hero-text h1 + p {
        font-size: 22px;
        line-height: 1.1em;
    }

    #underheading {
        margin-bottom: 1rem;
    }

    #underheading h1 {
        max-width: 95%; /* Увеличено для мобильных */
        font-size: 16px;
        padding: 0.5rem;
    }

    #Welcome {
        margin-bottom: 1rem;
    }

    .welcome-text {
        padding: 1rem 0;
    }

    .welcome-text h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }

    .welcome-text p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .program-section {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }

    .card-grid {
        gap: 0.5rem;
    }

    .noname-card img {
        height: 100px;
    }

    .noname-card h3 {
        font-size: 12px;
    }

    .noname-card p {
        font-size: 8px;
        max-width: 95%;
    }

    #accomindation {
        margin-bottom: 1rem;
    }

    #Sanctuary {
        margin-bottom: 1rem;
    }

    .accommodation-grid {
        padding: 2rem 1rem;
    }

    .accommodation-card img {
        height: 150px;
    }

    .accommodation-card h3 {
        font-size: 18px;
    }

    .accommodation-card p {
        font-size: 14px;
    }

    .beach-image {
        margin-bottom: 30px;
    }

    #pnjeez {
        margin-bottom: 1rem;
    }

    .icons-grid {
        gap: 10px;
    }

    .icon-item img {
        width: 20px;
        height: 20px;
    }

    .icon-item p {
        font-size: 12px;
    }

    #testimonials {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 10px 8px;
    }

    .testimonial-card h1 {
        font-size: 14px;
    }

    .testimonial-card .name,
    .testimonial-card .role {
        font-size: 10px;
    }

    #quote {
        margin-bottom: 1rem;
    }

    #quote h1 {
        font-size: clamp(0.9rem, 3vw, 1.4rem);
        margin: 30px auto 8px;
    }

    #quote p {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    #Pricing {
        margin-bottom: 1rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .card {
        padding: 30px 24px;
        max-width: 340px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .btn-price {
        padding: 12px 24px;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
        font-size: 10px;
        display: block;
        background-color: #000;
        color: #fff;
    }

    #Contact {
        margin-bottom: 1rem;
    }

    .form-group {
        max-width: 280px;
    }

    .form-input {
        padding: 12px;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }

    .submit-button {
        padding: 12px;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }

    #FAQ {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .faq-section h2 {
        font-size: 24px;
        margin: 2rem 0 3rem;
    }

    .faq-item {
        max-width: 280px;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        color: var(--text-color);
    }

    .faq-answer {
        font-size: 0.75rem;
        color: var(--text-color);
    }
}

@media (min-width: 1024px) {
    #navbar {
        justify-content: flex-start;
        padding: 0.5rem 2rem;
    }

    .nav-left {
        gap: 1.25rem;
    }

    .navbar-btn {
        padding: 0.5rem 0.625rem;
        font-size: 1rem;
        max-width: 7.5rem;
        text-align: center;
        white-space: nowrap;
        margin-left: auto;
        margin-right: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }

    .navbar-btn:hover {
        background-color: #333;
    }

    .cards {
        align-items: flex-start;
    }

    .btn-price {
        padding: 12px 24px;
        max-width: 280px;
        margin: 20px auto 0;
        font-size: 16px;
    }
}