        :root {
            --primary: #698B22;
            --primary-dark: #4c6318;
            --primary-light: rgba(105, 139, 34, 0.12);
            --text-dark: #101828;
            --text-medium: #374151;
            --text-light: #6b7280;
            --surface: #ffffff;
            --surface-alt: #f9fafb;
            --border: #e5e7eb;
            --border-dark: #d1d5db;
            --card-radius: 8px;
            --shadow-soft: 0 1px 3px rgba(0,0,0,0.08);
            --error: #dc2626;
            --error-bg: #fef2f2;
            --success: #16a34a;
            --success-bg: #f0fdf4;
        }

        .is-hidden {
            display: none;
        }

        .anm-support-note {
            font-size: 0.85rem;
            color: var(--text-light);
        }

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

        body {
            font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: #ffffff;
        }

        /* Container */
        .content-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .content-container {
                padding: 0 20px;
            }
        }

        /* Hero Section */
        .anm-hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 48px 0;
            position: relative;
            overflow: hidden;
        }

        .anm-hero-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .anm-hero-main h1 {
            font-size: clamp(1.75rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .anm-hero-main p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
        }

        .anm-hero-action {
            display: flex;
            gap: 12px;
        }

        .anm-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .anm-hero-btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: #ffffff;
        }

        .anm-hero-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        @media (max-width: 768px) {
            .anm-hero-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .anm-hero-action {
                justify-content: flex-start;
            }
        }

        /* Info Bar */
        .anm-info-bar {
            background: var(--surface-alt);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .anm-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .anm-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .anm-info-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .anm-info-text h3 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .anm-info-text p {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .anm-info-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* Main Content */
        .anm-main {
            padding: 48px 0 64px;
        }

        .anm-layout {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Cards */
        .anm-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--card-radius);
            padding: 20px;
        }

        .anm-card-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 14px;
        }



        /* Final Section (Hints + Privacy) */
        .anm-final-section {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .anm-final-hints {
            background: var(--surface-alt);
            border-radius: 5px;
            padding: 14px;
        }

        .anm-final-hints p {
            font-size: 0.85rem;
            color: var(--text-medium);
            margin: 0;
        }

        /* Support Card (Bottom) */
        .anm-support-card {
            margin-top: 24px;
            background: var(--surface-alt);
        }

        .anm-support-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .anm-support-links-inline {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .anm-support-link {
            display: block;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .anm-support-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .anm-support-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .anm-support-links-inline {
                flex-direction: column;
                gap: 8px;
            }
        }

        /* Seminar Selection Combined Layout */
        .anm-seminar-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: start;
        }

        .anm-seminar-selects {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .anm-seminar-summary {
            background: linear-gradient(135deg, #f7faf3 0%, #f2f7eb 100%);
            border: 2px solid var(--primary);
            border-radius: 5px;
            padding: 16px;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .anm-summary-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: #101828;
            margin-bottom: 6px;
        }

        .anm-summary-meta,
        .anm-summary-location {
            font-size: 0.82rem;
            color: #6b7280;
        }

        .anm-summary-meta {
            margin-bottom: 3px;
        }

        .anm-summary-location {
            margin-bottom: 6px;
        }

        .anm-summary-dena {
            display: flex;
            flex-direction: column;
            gap: 3px;
            margin-bottom: 10px;
            font-size: 0.75rem;
            color: #6b7280;
        }

        .anm-summary-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
            border-top: 1px solid rgba(105, 139, 34, 0.2);
        }

        .anm-summary-price-label {
            font-size: 0.82rem;
            color: #6b7280;
        }

        .anm-summary-empty {
            color: var(--text-light);
            font-size: 0.875rem;
            text-align: center;
        }

        @media (max-width: 900px) {
            .anm-seminar-layout {
                grid-template-columns: 1fr;
            }
            .anm-seminar-summary {
                min-height: auto;
                justify-content: flex-start;
            }
        }

        @media (max-width: 600px) {
            .anm-seminar-layout {
                gap: 16px;
            }

            .anm-seminar-summary {
                padding: 14px;
            }

            .anm-summary-price {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

        /* Form Section */
        .anm-form-section {
            margin-bottom: 24px;
        }

        .anm-form-section:last-of-type {
            margin-bottom: 0;
        }

        .anm-form-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
        }

        .anm-form-step {
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .anm-form-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .anm-form-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        /* Form Grid */
        .anm-form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .anm-form-grid-full {
            grid-column: 1 / -1;
        }

        @media (max-width: 600px) {
            .anm-form-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Form Fields */
        .anm-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .anm-field label {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-medium);
        }

        .anm-field label .required {
            color: var(--error);
        }

        .anm-input,
        .anm-select,
        .anm-textarea {
            padding: 11px 14px;
            font-size: 0.9rem;
            border: 1px solid var(--border-dark);
            border-radius: 6px;
            background: var(--surface);
            color: var(--text-dark);
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .anm-input:focus,
        .anm-select:focus,
        .anm-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .anm-input::placeholder,
        .anm-textarea::placeholder {
            color: #9ca3af;
        }

        .anm-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
        }

        .anm-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .anm-field-hint {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        /* Checkbox */
        .anm-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
        }

        .anm-checkbox input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .anm-checkbox span {
            font-size: 0.875rem;
            color: var(--text-medium);
        }

        .anm-checkbox a {
            color: var(--primary);
            text-decoration: underline;
        }

        /* Submit Section */
        .anm-submit-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        .anm-submit-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .anm-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            border: none;
            font-family: inherit;
        }

        .anm-btn-primary {
            background: var(--primary);
            color: #ffffff;
        }

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

        .anm-btn-secondary {
            background: var(--surface);
            color: var(--text-medium);
            border: 1px solid var(--border-dark);
        }

        .anm-btn-secondary:hover {
            background: var(--surface-alt);
            border-color: var(--text-light);
        }

        /* Status Messages */
        .anm-status {
            padding: 14px 16px;
            border-radius: 6px;
            font-size: 0.875rem;
            margin-top: 16px;
            display: none;
        }

        .anm-status.error {
            display: block;
            background: var(--error-bg);
            border: 1px solid #fecaca;
            color: var(--error);
        }

        .anm-status.success {
            display: block;
            background: var(--success-bg);
            border: 1px solid #86efac;
            color: var(--success);
        }

        /* Success Message */
        .anm-success {
            display: none;
            background: var(--success-bg);
            border: 2px solid var(--success);
            border-radius: var(--card-radius);
            padding: 24px;
            text-align: center;
        }

        .anm-success.show {
            display: block;
        }

        .anm-success h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--success);
            margin-bottom: 8px;
        }

        .anm-success p {
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        /* Feedback Modal */
        .anm-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 20px;
        }

        .anm-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .anm-modal {
            background: var(--surface);
            border-radius: 12px;
            max-width: 480px;
            width: 100%;
            padding: 32px;
            text-align: center;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .anm-modal-overlay.active .anm-modal {
            transform: scale(1) translateY(0);
        }

        .anm-modal-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .anm-modal-icon.success {
            background: var(--success-bg);
            color: var(--success);
            border: 3px solid var(--success);
        }

        .anm-modal-icon.error {
            background: var(--error-bg);
            color: var(--error);
            border: 3px solid var(--error);
        }

        .anm-modal-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .anm-modal-title.success {
            color: var(--success);
        }

        .anm-modal-title.error {
            color: var(--error);
        }

        .anm-modal-message {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .anm-modal-details {
            background: var(--surface-alt);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
            text-align: left;
        }

        .anm-modal-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 0.875rem;
            border-bottom: 1px solid var(--border);
        }

        .anm-modal-detail-row:last-child {
            border-bottom: none;
        }

        .anm-modal-detail-label {
            color: var(--text-light);
        }

        .anm-modal-detail-value {
            color: var(--text-dark);
            font-weight: 500;
        }

        .anm-modal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            font-family: inherit;
        }

        .anm-modal-btn-success {
            background: var(--success);
            color: #ffffff;
        }

        .anm-modal-btn-success:hover {
            background: #15803d;
        }

        .anm-modal-btn-error {
            background: var(--error);
            color: #ffffff;
        }

        .anm-modal-btn-error:hover {
            background: #b91c1c;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .anm-hero {
                padding: 32px 0;
            }
            .anm-info-bar {
                padding: 16px 0;
            }
            .anm-main {
                padding: 32px 0 48px;
            }
            .anm-form-header {
                flex-wrap: wrap;
            }
            .anm-submit-actions {
                flex-direction: column;
            }
            .anm-btn {
                width: 100%;
            }
        }

        /* Footer Mobile Fix */
        @media (max-width: 768px) {
            .footer-section {
                text-align: center !important;
            }
            .footer-section h3 {
                text-align: center !important;
            }
            .footer-links {
                text-align: center !important;
            }
            .footer-links li {
                text-align: center !important;
            }
            .footer-bottom {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 16px !important;
            }
            .footer-bottom-links {
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                gap: 16px !important;
            }
        }

        #header-placeholder { margin: 0; padding: 0; }
