/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #1a3c34;
    background: #fdfcf8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #064e3b;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #4a6b62;
    max-width: 560px;
    margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}
.btn--outline {
    background: rgba(255,255,255,0.15);
    color: #064e3b;
    border: 2px solid rgba(6, 78, 59, 0.3);
    backdrop-filter: blur(4px);
}
.btn--outline:hover {
    background: #064e3b;
    color: #fff;
    border-color: #064e3b;
}
.btn--light {
    background: #fff;
    color: #064e3b;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
    padding: 10px 0;
}
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #064e3b;
}
.nav__logo-icon {
    color: #059669;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.nav__links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3c34;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
}
.nav__cta::after { display: none; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(5,150,105,0.3); }

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: #064e3b;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #064e3b;
}
.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.mobile-menu__links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #064e3b;
}
.mobile-menu__cta {
    margin-top: 16px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0fdf4 0%, #fdfcf8 40%, #ecfdf5 100%);
    padding: 120px 0 80px;
}
.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.hero__title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: #064e3b;
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero__title-accent {
    font-style: italic;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: #4a6b62;
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.8;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 24px; align-items: center; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
}
.hero__stat-label { font-size: 0.8rem; color: #6b8f84; font-weight: 600; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(5, 150, 105, 0.2); }

/* Hero image */
.hero__right { position: relative; }
.hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
}
.hero__image-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}
.hero__image-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 700;
    color: #064e3b;
}
.hero__image-float svg { color: #059669; }
.hero__image-float--1 { top: 40px; left: -30px; animation: float 4s ease-in-out infinite; }
.hero__image-float--2 { bottom: 60px; right: -20px; animation: float 4s ease-in-out infinite 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b8f84;
    font-weight: 600;
    animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #fdfcf8;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.12);
    border-color: rgba(5, 150, 105, 0.2);
}
.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(5,150,105,0.1) 0%, rgba(16,185,129,0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    margin-bottom: 20px;
}
.service-card__title {
    font-size: 1.3rem;
    color: #064e3b;
    margin-bottom: 12px;
}
.service-card__desc {
    font-size: 0.95rem;
    color: #4a6b62;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #fdfcf8 100%);
}
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__images { position: relative; }
.about__img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
}
.about__img-main img { width: 100%; height: 560px; object-fit: cover; }
.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.15);
    border: 6px solid #fdfcf8;
}
.about__img-secondary img { width: 320px; height: 380px; object-fit: cover; }
.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.3);
}
.about__experience-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}
.about__experience-text { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; }
.about__content { max-width: 480px; }
.about__text {
    font-size: 1.05rem;
    color: #4a6b62;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3c34;
}
.about__highlight svg { color: #059669; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: #fdfcf8;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}
.gallery__item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
}
.gallery__item--large { grid-column: span 6; }
.gallery__item:not(.gallery__item--large) { grid-column: span 3; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 50%, #fdfcf8 100%);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.1);
}
.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 20px;
}
.testimonial-card__text {
    font-size: 0.95rem;
    color: #4a6b62;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-card__name { font-weight: 700; color: #064e3b; font-size: 0.95rem; }

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
    position: relative;
    overflow: hidden;
}
.cta__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta__inner .section-tag { color: #6ee7b7; }
.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}
.cta__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: #fdfcf8;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact__card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    transition: all 0.3s ease;
}
.contact__card:hover {
    border-color: rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}
.contact__card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(5,150,105,0.1) 0%, rgba(16,185,129,0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}
.contact__card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #064e3b;
    margin-bottom: 4px;
}
.contact__card-text { font-size: 0.9rem; color: #4a6b62; line-height: 1.6; }
.contact__card-text a { color: #059669; font-weight: 600; }
.contact__card-text a:hover { color: #047857; }

.contact__form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(5, 150, 105, 0.08);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.06);
}
.contact__form-title {
    font-size: 1.6rem;
    color: #064e3b;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(5, 150, 105, 0.15);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #1a3c34;
    background: #fdfcf8;
    transition: all 0.3s ease;
    outline: none;
}
.form-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    background: #fff;
}
.form-input::placeholder { color: #94a3b8; }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.contact__success.show { display: block; }
.contact__success svg { color: #059669; margin: 0 auto 16px; }
.contact__success h4 {
    font-size: 1.4rem;
    color: #064e3b;
    margin-bottom: 8px;
}
.contact__success p { color: #4a6b62; }

/* ===== MAP ===== */
.map { height: 320px; filter: saturate(0.7) contrast(1.05); }

/* ===== FOOTER ===== */
.footer {
    background: #041f16;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.footer__logo-icon { color: #10b981; }
.footer__tagline { font-size: 0.9rem; line-height: 1.7; }
.footer__links h5, .footer__contact h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.9rem; transition: color 0.3s ease; }
.footer__links a:hover { color: #10b981; }
.footer__contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer__contact a { color: #10b981; }
.footer__contact a:hover { color: #6ee7b7; }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__right { max-width: 480px; margin: 0 auto; }
    .hero__image-wrapper img { height: 500px; }
    .hero__image-float--1 { left: 0; }
    .hero__image-float--2 { right: 0; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner { grid-template-columns: 1fr; gap: 60px; }
    .about__content { max-width: 100%; }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__title { font-size: 2.4rem; }
    .hero__image-wrapper img { height: 400px; }
    .hero__image-float { display: none; }
    .hero__scroll { display: none; }
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
    .gallery__item--large { grid-column: span 2; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .about__img-secondary { right: -10px; bottom: -20px; }
    .about__img-secondary img { width: 220px; height: 260px; }
    .about__highlights { grid-template-columns: 1fr; }
    .contact__form-wrapper { padding: 28px 20px; }
    .contact__form-row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__stat-divider { width: 40px; height: 1px; }
    .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery__item--large { grid-column: span 1; }
    .gallery__item:not(.gallery__item--large) { grid-column: span 1; }
    .gallery__item img { height: 220px; }
}
</style>
