:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8956a;
    --color-secondary: #2c3e50;
    --color-accent: #1a252f;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #1a252f;
    --color-border: #e5e5e5;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

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

.btn-secondary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

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

.btn-light {
    background: white;
    color: var(--color-secondary);
    border-color: white;
}

.btn-light:hover {
    background: var(--color-bg-alt);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 500;
}

.link-arrow::after {
    content: '→';
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-secondary);
}

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

/* Hero */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    opacity: 0.15;
    border-radius: 8px;
    z-index: -1;
}

/* Intro Band */
.intro-band {
    background: var(--color-secondary);
    padding: 48px 24px;
}

.intro-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

.philosophy-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-image {
    flex: 0 0 45%;
}

.philosophy-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 24px;
}

.philosophy-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-content .link-arrow {
    margin-top: 12px;
}

/* Services Preview */
.services-preview {
    padding: 100px 24px;
}

.services-preview-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-preview-header h2 {
    margin-bottom: 16px;
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

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

.service-card.featured {
    border: 2px solid var(--color-primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    color: var(--color-primary-dark);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Showcase Section */
.showcase-section {
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--color-bg-dark);
}

.showcase-grid {
    flex: 0 0 55%;
    display: flex;
    flex-wrap: wrap;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    flex: 0 0 50%;
}

.showcase-image.showcase-large {
    flex: 0 0 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: var(--transition);
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.showcase-image:hover .showcase-overlay {
    opacity: 1;
}

.showcase-content {
    flex: 1;
    padding: 80px 60px;
    color: white;
}

.showcase-content .section-tag {
    color: var(--color-primary);
}

.showcase-content h2 {
    color: white;
    margin-bottom: 20px;
}

.showcase-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Process Section */
.process-section {
    padding: 100px 24px;
    background: var(--color-bg-alt);
}

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

.process-header h2 {
    margin-bottom: 0;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.4;
    margin-bottom: 16px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

.process-cta p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 24px;
}

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

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

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

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.testimonial footer span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: 100px 24px;
    text-align: center;
}

.contact-banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-banner h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    font-size: 1.1rem;
}

.contact-banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    padding: 60px 24px;
    background: var(--color-bg-alt);
}

.trust-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
}

.trust-item svg {
    color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 24px 24px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: white;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--color-primary);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
    background: white;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: 160px 24px 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Content Section */
.content-section {
    padding: 80px 24px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-wrapper li {
    color: var(--color-text-light);
    margin-bottom: 10px;
    list-style: disc;
}

/* Services Page */
.services-full {
    padding: 80px 24px;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-icon {
    flex: 0 0 80px;
    height: 80px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.service-item-content {
    flex: 1;
}

.service-item h3 {
    margin-bottom: 12px;
}

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

.service-item-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.service-item-duration {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail svg {
    flex: 0 0 24px;
    color: var(--color-primary);
    margin-top: 4px;
}

.contact-detail-content h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-content p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 8px;
}

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.about-intro-content {
    flex: 1;
    min-width: 300px;
}

.about-intro-content h2 {
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-image {
    flex: 1;
    min-width: 300px;
}

.about-intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-values {
    padding: 80px 24px;
    background: var(--color-bg-alt);
}

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

.values-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
}

.value-card svg {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 80px 24px;
}

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

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

.team-member {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.team-member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: var(--color-bg-alt);
}

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

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-member span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    color: white;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .philosophy-wrapper {
        flex-direction: column;
    }

    .philosophy-image {
        flex: none;
    }

    .showcase-section {
        flex-direction: column;
    }

    .showcase-grid {
        flex: none;
        width: 100%;
    }

    .showcase-content {
        padding: 60px 24px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item-icon {
        margin: 0 auto;
    }

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

    .about-intro {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    .intro-inner {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-brand {
        flex: none;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 24px;
    }

    .testimonial {
        padding: 30px;
    }
}
