* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #f6f1ea 0%, #e4d6c2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: #333;
}

.container {
    max-width: 1200px;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

/* Header */

.header {
    background: linear-gradient(90deg, #A17A51, #c39a6b);
    text-align: center;
    padding: 20px 20px 16px;
    color: #fff;
}

/* Logo */

.logo-svg {
    display: block;
    width: 64px;
    max-height: 42px;
    margin: 0 auto 8px;
    color: #ffffff;
}

.logo-svg path {
    fill: currentColor;
}

/* Title */

.header h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.header h2 {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Content */

.content {
    padding: 20px 28px;
    text-align: center;
}

.intro {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Service Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.feature-item {
    background: #faf9f7;
    border: 1px solid #e6dccf;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #A17A51, #c39a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.feature-item h3 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Notes Section */
.notes {
    background: #f4f0ea;
    border-left: 4px solid #A17A51;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
    text-align: left;
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #A17A51;
}

.notes-header i {
    font-size: 1rem;
}

.notes-header h3 {
    font-size: 0.95rem;
    margin: 0;
    color: #333;
}

.notes-content {
    color: #555;
    line-height: 1.6;
}

.notes-content p {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.notes-content p:last-child {
    margin-bottom: 0;
}

.notes-content strong {
    color: #333;
    font-weight: 600;
}

/* Footer */

.footer {
    border-top: 1px solid #e6dccf;
    background: #f4f0ea;
    text-align: center;
    padding: 14px 20px;
}

.footer p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #A17A51;
    color: #fff;
    font-size: .9rem;
    transition: background .2s ease;
}

.contact-btn:hover {
    background: #7c5a38;
    text-decoration: none;
}

/* Mobile */

@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .logo-svg {
        width: 56px;
        max-height: 36px;
    }

    .content {
        padding: 16px 18px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 14px;
    }

    .notes {
        padding: 14px 16px;
    }
}
