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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2c5282;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    background-color: #edf2f7;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #2c5282;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-nav a {
    padding: 0.75rem;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
}

.ad-disclosure-mobile {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.75rem;
    text-align: center;
}

.hero {
    margin-bottom: 4rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.85) 0%, rgba(66, 153, 225, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5282;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5282;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2c5282;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.services-preview {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 360px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.75rem;
    color: #2c5282;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-card {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    padding: 0.875rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-card:hover {
    background-color: #1a365d;
    transform: scale(1.02);
}

.booking-section {
    padding: 4rem 0;
    background-color: #edf2f7;
}

.booking-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.booking-info p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.selected-service-display .label {
    font-weight: 600;
    color: #718096;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.selected-service-display .service-name {
    display: block;
    font-size: 1.25rem;
    color: #2c5282;
    font-weight: 700;
    margin-top: 0.5rem;
}

.booking-form-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.btn-submit {
    background-color: #2c5282;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.why-choose {
    padding: 4rem 0;
    background-color: #ffffff;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #2c5282;
    transform: scale(1.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.testimonials {
    padding: 4rem 0;
    background-color: #edf2f7;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: #2c5282;
    font-weight: 600;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fffaf0;
}

.disclaimer-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d69e2e;
}

.disclaimer-card h3 {
    color: #744210;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disclaimer-card p {
    color: #4a5568;
    line-height: 1.8;
}

.footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a365d;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-content {
    padding: 4rem 0;
}

.content-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.content-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-card .card-image-horizontal {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.content-card .card-text {
    padding: 3rem;
}

.content-card h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-card p {
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-card.reverse {
    display: flex;
    flex-direction: column;
}

.values-section {
    padding: 4rem 3rem;
    background-color: #f7fafc;
    border-radius: 12px;
}

.values-section h2 {
    font-size: 2rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 280px;
}

.team-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #2c5282;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.7;
}

.commitment-section {
    padding: 4rem 0;
}

.commitment-card {
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    padding: 3rem;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
}

.commitment-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.commitment-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.commitment-card .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.commitment-card .btn-secondary:hover {
    background-color: #ffffff;
    color: #2c5282;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    color: #2c5282;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    color: #4a5568;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: #1a365d;
    transform: scale(1.02);
}

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

.service-cta {
    padding: 4rem 0;
    background-color: #edf2f7;
}

.cta-card {
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #4a5568;
    line-height: 1.7;
}

.email-text {
    color: #2c5282;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-row .day {
    font-weight: 600;
    color: #2d3748;
}

.hours-row .time {
    color: #4a5568;
}

.contact-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #e2e8f0;
}

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

.contact-additional {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-box p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box a {
    color: #2c5282;
    font-weight: 600;
}

.thanks-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.thanks-message {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-detail {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-detail h3 {
    font-size: 0.875rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.confirmed-service {
    font-size: 1.25rem;
    color: #2c5282;
    font-weight: 700;
}

.thanks-info {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    color: #4a5568;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-info ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5282;
}

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

.legal-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2c5282;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-image {
        height: 400px;
    }

    .card-grid,
    .feature-grid,
    .testimonial-grid,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .testimonial-card,
    .team-card {
        width: 100%;
        max-width: 400px;
    }

    .booking-layout {
        flex-direction: column;
    }

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

    .page-hero p {
        font-size: 1rem;
    }

    .service-detail-layout {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .service-detail-content {
        min-width: 100%;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .thanks-card {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .service-card,
    .feature-card,
    .testimonial-card,
    .team-card {
        width: 100%;
    }

    .thanks-card h1 {
        font-size: 1.75rem;
    }
}