.small-email {
        font-size: 0.85em;
        word-break: break-all;
        padding: 2px 6px;
        background: #fff;
        border-radius: 4px;
        display: inline-block;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        max-width: 100%;
    }
    color: white !important;
/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffb6c1; /* Baby Pink */
    --secondary-color: #b76e79; /* Rose Gold */
    --accent-color: #ffe4e1; /* Light Baby Pink */
    --dark-color: #b76e79; /* Rose Gold for dark accents */
    --light-color: #fff0f5; /* Light Pink background */
    --text-color: #b76e79; /* Rose Gold for main text */
    --text-light: #c08081; /* Soft Rose Gold */
    --border-color: #ffd1dc; /* Soft Pink border */
    --shadow: 0 2px 15px rgba(183, 110, 121, 0.1);
    --shadow-lg: 0 5px 30px rgba(183, 110, 121, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #c49292;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-white:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: #c49292;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Navigation
======================================== */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:not(.btn-nav):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-nav):hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Features Section
======================================== */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
}

/* ========================================
   Services Section
======================================== */
.services-preview {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* ========================================
   Why Choose Section
======================================== */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefits-list strong {
    display: block;
    margin-bottom: 5px;
}

.benefits-list p {
    color: var(--text-light);
    font-size: 14px;
}

.why-choose-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* ========================================
   Testimonials
======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   CTA Section
======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

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

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
}

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

.footer-section ul li a {
    color: #ccc;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.social-links a:hover {
    transform: scale(1.2);
}

.hours span {
    color: white;
}

.contact-info li {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* ========================================
   Page Header
======================================== */
.page-header {
        --shadow: 0 2px 15px rgba(255, 255, 255, 0.1);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
        color: var(--dark-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* ========================================
        color: var(--secondary-color);
======================================== */
.services-detail {
    padding: 80px 0;
}

        background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
        color: var(--dark-color);
}

.category-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.category-header p {
        background: rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

        background: var(--primary-color);
        color: var(--dark-color);
        border: 2px solid var(--secondary-color);
        font-weight: 600;
    margin: 0 auto;
}

        background: var(--secondary-color);
        color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
        color: var(--secondary-color);
        border: 2px solid var(--secondary-color);
        font-weight: 600;
.service-item:hover {
    background: var(--light-color);
}
        background: #fff;
        color: var(--secondary-color);
        border: 2px solid var(--secondary-color);
        font-weight: 600;
    flex: 1;
}

        font-size: 28px;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: 1px;
    margin-bottom: 8px;
}

        background: var(--accent-color);
    color: var(--text-light);
    font-size: 15px;
}
        color: var(--secondary-color);
.service-price {
    font-size: 22px;
    font-weight: 600;
        background: var(--accent-color);
    white-space: nowrap;
    margin-left: 20px;
}
        background: #fff;
/* Packages */
.packages {
    background: var(--light-color);
        background: var(--primary-color);
        color: var(--dark-color);
        border: 1px solid var(--secondary-color);
}

.packages-grid {
        background: #fff;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
        background: var(--secondary-color);
        color: #fff;
.package-card {
    background: white;
    padding: 40px;
        background: var(--accent-color);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
        background: #fff;
}

.package-card:hover {
        color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

        color: #fff;
        box-shadow: 0 2px 20px #ffe4e1;
    border: 3px solid var(--primary-color);
}

        background: var(--secondary-color);
        color: #fff;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.package-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.package-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.package-card ul li:last-child {
    border-bottom: none;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.package-price .original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
}

.package-price .special {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   Gallery Page
======================================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-image {
    height: 350px;
    position: relative;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 20px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--accent-color);
    border-radius: 15px;
}

.gallery-note p {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* ========================================
   About Page
======================================== */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.values-section,
.why-us-section,
.team-section {
    margin-bottom: 80px;
}

.values-section h2,
.why-us-section h2,
.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

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

.why-item {
    padding: 25px;
    background: white;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.team-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   Contact Page
======================================== */
.contact-info-section {
    padding: 60px 0;
    background: var(--light-color);
}

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

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.small-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.hours-list p {
    line-height: 2;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.booking-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: start;
}

.feature-item .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.booking-note {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4caf50;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.map-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    height: 400px;
    background: #e0e0e0;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content p {
    margin-bottom: 15px;
}

.parking-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.parking-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.parking-info p {
    margin-bottom: 8px;
    color: var(--text-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .why-choose-content,
    .about-intro {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-item {
        flex-direction: column;
        gap: 10px;
    }

    .service-price {
        margin-left: 0;
    }
}

.btn-primary.btn-full, button[type="submit"] {
  width: 100%;
  max-width: 350px;
  font-size: 1.1em;
  padding: 0.75em 1em;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .btn-primary.btn-full, button[type="submit"] {
    font-size: 1em;
    max-width: 100%;
    padding: 0.9em 0.5em;
  }
}
