* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #e8c971;
    --beige: #f5f1e8;
    --white: #ffffff;
    --grey: #666666;
    --grey-light: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Didot', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--beige);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

main {
    margin-top: 70px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.5)), url('../images/bg1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    color: var(--gold);
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--beige);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    background: var(--black);
}

.btn-primary:hover {
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
}

.btn-secondary:hover {
    color: var(--black);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

section {
    padding: 5rem 0;
}

.intro {
    background: var(--beige);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.intro-text p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.intro-image img {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
    background: var(--white);
    text-align: center;
}

.features h2 {
    color: var(--gold);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 2rem;
    background: var(--beige);
    border: 1px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--charcoal);
}

.process {
    background: var(--charcoal);
    color: var(--beige);
}

.process h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.process-step {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--beige);
}

.testimonials {
    background: var(--beige);
}

.testimonials h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--gold);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--grey);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    text-align: center;
    color: var(--beige);
}

.cta-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--beige);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.location-info address {
    font-style: normal;
}

.location-info p {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    padding: 1rem;
    background: var(--beige);
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.location-info p:hover {
    transform: translateX(5px);
}

.location-info strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.location-info strong::before {
    content: '◆ ';
    color: var(--gold);
    font-size: 0.8rem;
}

.location-info a {
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-info a:hover {
    color: var(--gold);
}

.location-map img,
.location-map iframe {
    width: 100%;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 8rem 0 5rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-hero h1 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--beige);
    font-size: 1.2rem;
}

.contact-section {
    background: var(--beige);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h3::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.8rem;
}

.contact-item p {
    color: var(--charcoal);
}

.contact-item address {
    font-style: normal;
    color: var(--charcoal);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    padding: 3rem;
    border: 2px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-wrapper:hover::before {
    opacity: 0.1;
}

.contact-form-wrapper h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--charcoal);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--beige);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: var(--charcoal);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.form-error {
    display: none;
    color: #c41e3a;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #c41e3a;
}

.map-section {
    background: var(--white);
    padding: 3rem 0;
}

.map-section h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

.map-wrapper img,
.map-wrapper iframe {
    width: 100%;
    border: 2px solid var(--gold);
}

.success-section {
    background: var(--beige);
    padding: 8rem 0;
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    color: var(--gold);
    margin-bottom: 2rem;
}

.success-content h1 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.next-steps {
    background: var(--white);
}

.next-steps h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--beige);
    border-top: 3px solid var(--gold);
}

.step-icon {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--charcoal);
}

.services-intro {
    background: var(--beige);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--gold);
}

.services-list {
    background: var(--white);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image img {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.pricing-info {
    background: var(--beige);
    text-align: center;
}

.pricing-info h2 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.pricing-info > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--charcoal);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--gold);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--charcoal);
    border: 2px solid var(--gold);
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pricing-card p {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.pricing-card.featured p {
    color: var(--beige);
}

.about-story {
    background: var(--beige);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.about-image img {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values {
    background: var(--white);
}

.values h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    padding: 2rem;
    background: var(--beige);
    border-left: 3px solid var(--gold);
}

.value-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--charcoal);
}

.team {
    background: var(--beige);
}

.team h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--charcoal);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gold);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-icon {
    margin-bottom: 1.5rem;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--charcoal);
}

.why-choose {
    background: var(--white);
}

.why-choose h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.why-item {
    padding: 2rem;
    background: var(--beige);
    border-top: 3px solid var(--gold);
}

.why-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--charcoal);
}

.policy-content {
    background: var(--white);
}

.policy-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.policy-section h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.policy-section h3 {
    color: var(--black);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0 1rem 2rem;
}

.policy-section ul {
    list-style: disc;
}

.policy-section ol {
    list-style: decimal;
}

.policy-section li {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.policy-section address {
    font-style: normal;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--beige);
    border-left: 3px solid var(--gold);
}

.footer {
    background: var(--black);
    color: var(--beige);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--beige);
    margin-bottom: 0.75rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--beige);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--beige);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--beige);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.privacy-popup-content p {
    color: var(--beige);
    margin: 0;
    flex: 1;
}

.privacy-popup-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.privacy-link {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid,
    .location-grid,
    .contact-grid,
    .service-item,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .team-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .success-actions {
        flex-direction: column;
    }

    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.875rem 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .process-step,
    .testimonial-card,
    .step-card,
    .value-card,
    .why-item,
    .team-member {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    section {
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .feature-card,
    .process-step,
    .testimonial-card,
    .step-card,
    .value-card,
    .why-item,
    .team-member,
    .contact-form-wrapper {
        padding: 1.25rem;
    }
}

