* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    flex-direction: column;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    background-color: var(--primary-color);
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1f4438;
    transform: translateY(-2px);
}

.trust-indicators {
    background-color: var(--bg-white);
    padding: 4rem 2rem;
}

.indicator-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.indicator-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.indicator-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.indicator-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.philosophy-split,
.testimonial-split,
.approach-section,
.final-cta-split,
.about-split,
.values-split,
.contact-split {
    display: flex;
    flex-direction: column;
}

.split-left,
.split-right {
    flex: 1;
    min-height: 500px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block {
    padding: 4rem 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    margin-top: 1rem;
}

.cta-inline:hover {
    color: #1f4438;
    border-color: #1f4438;
}

.services-highlight {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #6f5738;
}

.testimonial-content {
    padding: 4rem 2.5rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--bg-white);
    max-width: 600px;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left {
    padding: 4rem 2.5rem;
    background-color: var(--bg-white);
}

.approach-left h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.pillar-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.form-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1f4438;
}

.cta-right {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2.5rem;
}

.cta-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-right p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #1f4438;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #6f5738;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--bg-white);
}

.btn-cookie:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 3rem);
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.credentials-section {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.credentials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.credentials-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.credential-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.credential-item p {
    font-weight: 600;
    color: var(--text-dark);
}

.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-detail-content {
    padding: 3rem;
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-duration {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    flex: 1;
    padding: 3rem 2rem;
    background-color: var(--bg-white);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.info-block p {
    line-height: 1.8;
    color: var(--text-light);
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.directions-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.directions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.direction-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.checkmark-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4438;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.preparation-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.preparation-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.preparation-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.prep-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.prep-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-info-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.contact-email a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .philosophy-split,
    .testimonial-split,
    .approach-section,
    .final-cta-split,
    .about-split,
    .values-split,
    .contact-split {
        flex-direction: row;
    }

    .service-detail-card {
        flex-direction: row;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .nav-links {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .section-header-center h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .content-block h2 {
        font-size: 1.7rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }
}