/* GiftArvin.org - Skeuomorphism Design Style */

/* CSS Variables */
:root {
    --primary-color: #8B4789;
    --primary-dark: #6B3569;
    --primary-light: #A565A3;
    --secondary-color: #D4A5D4;
    --accent-color: #E8C5E8;
    --background-color: #F5F0F5;
    --card-background: #FFFFFF;
    --text-primary: #2D2D2D;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --border-color: #D4D4D4;
    --shadow-light: rgba(139, 71, 137, 0.1);
    --shadow-medium: rgba(139, 71, 137, 0.2);
    --shadow-heavy: rgba(139, 71, 137, 0.3);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Notice Banner */
.notice-banner {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    position: relative;
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.notice-banner p {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex: 1;
}

.notice-banner strong {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.notice-close {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    padding: 0;
    margin-left: 1rem;
}

.notice-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notice-close svg {
    width: 16px;
    height: 16px;
    color: #FFFFFF;
}

.notice-banner.hidden {
    display: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo a:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav ul li a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-weight: 500;
}

.nav ul li a:hover,
.nav ul li a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    text-align: center;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 -4px 12px rgba(255, 255, 255, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow-heavy),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--card-background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.feature-icon-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 1rem;
    background: var(--background-color);
    box-shadow: 0 4px 12px var(--shadow-light),
                inset 0 2px 4px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(228, 197, 232, 0.3) 100%);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-text p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.info-benefits {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.benefits-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.info-benefits h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-benefits ul {
    list-style: none;
}

.info-benefits ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.info-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* How Works Preview */
.how-works-preview {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.how-works-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 -4px 12px rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.about-image-section,
.process-image-section,
.contact-image-section,
.faq-image-section {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main-image,
.process-main-image,
.contact-main-image,
.faq-main-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: var(--card-background);
    padding: 1rem;
}

.contact-main-image,
.faq-main-image {
    max-width: 500px;
}

.about-intro,
.about-mission,
.about-what,
.about-commitment,
.about-location,
.process-intro,
.faq-intro,
.contact-intro {
    margin-bottom: 3rem;
}

.about-intro h2,
.about-mission h2,
.about-values h2,
.about-what h2,
.about-commitment h2,
.about-location h2,
.process-steps h2,
.important-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-intro p,
.about-mission p,
.about-what p,
.about-commitment p,
.about-location p,
.process-intro p,
.faq-intro p,
.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-primary);
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Location Details */
.location-details {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.location-details p {
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.step-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.step-content p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.step-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.step-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Important Info */
.important-info {
    margin-top: 3rem;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.info-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    background: var(--card-background);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 16px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(245, 240, 245, 0.5));
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 71, 137, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    margin-left: 2rem;
    list-style: disc;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.faq-answer a:hover {
    color: var(--primary-dark);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--text-light);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--card-background);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 -1px 0 rgba(255, 255, 255, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 -1px 0 rgba(255, 255, 255, 1),
                0 0 0 3px rgba(139, 71, 137, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Details */
.contact-details {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--shadow-medium),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    color: var(--text-light);
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-detail a:hover {
    border-bottom-color: var(--primary-color);
}

.contact-additional {
    margin-top: 3rem;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.contact-additional h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-additional p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(165, 101, 163, 0.1) 0%, rgba(212, 165, 212, 0.1) 100%);
    border-radius: 16px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.legal-intro p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-back-link {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #4A2649 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    box-shadow: 0 -4px 12px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-col p,
.footer-col ul {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col ul.contact-info li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .notice-banner {
        padding: 1rem 0;
    }

    .notice-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .notice-icon {
        width: 20px;
        height: 20px;
    }

    .notice-banner p {
        font-size: 0.85rem;
    }

    .notice-close {
        width: 24px;
        height: 24px;
        margin-left: 0.5rem;
    }

    .notice-close svg {
        width: 14px;
        height: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        padding: 1rem;
        box-shadow: 0 4px 12px var(--shadow-medium);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav ul li a {
        display: block;
        width: 100%;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-icon-image {
        width: 120px;
        height: 120px;
    }

    .about-main-image,
    .process-main-image,
    .contact-main-image,
    .faq-main-image {
        max-width: 100%;
    }

    .features-grid,
    .steps-grid,
    .values-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }

    .step-number-large {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Service Info Section */
.service-info-section {
    padding: 3rem 0;
    background-color: var(--background-color);
}

.service-info-box {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    border-left: 5px solid #F57C00;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    margin: 0 auto;
}

.service-info-box h2 {
    color: #E65100;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-info-box p {
    color: #4E342E;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-info-box p:last-child {
    margin-bottom: 0;
}

.service-info-box strong {
    color: #BF360C;
}

@media (max-width: 480px) {
    .notice-banner p {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features h2,
    .how-works-preview h2,
    .info-section h2,
    .resources-section h2 {
        font-size: 2rem;
    }

    .service-info-box {
        padding: 1.5rem;
    }

    .service-info-box h2 {
        font-size: 1.5rem;
    }

    .service-info-box p {
        font-size: 0.95rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Resources Section */
.resources-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(165, 101, 163, 0.05) 0%, rgba(212, 165, 212, 0.05) 100%);
}

.resources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.resource-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-card ul li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 71, 137, 0.05);
}

.resource-card ul li:last-child {
    border-bottom: none;
}

.resource-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.resource-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 71, 137, 0.1);
    text-align: center;
}

.resource-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.resource-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Sitemap Page */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sitemap-section {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.sitemap-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(139, 71, 137, 0.05);
    line-height: 1.6;
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.sitemap-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.sitemap-note {
    background: linear-gradient(135deg, rgba(165, 101, 163, 0.1) 0%, rgba(212, 165, 212, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.sitemap-note h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sitemap-note p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.sitemap-note a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.sitemap-note a:hover {
    color: var(--primary-dark);
}

/* Guide Page */
.guide-intro {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.guide-intro p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.guide-section {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
}

.guide-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.guide-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.guide-content h3:first-child {
    margin-top: 0;
}

.guide-content p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-content ul,
.guide-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.guide-content ul li,
.guide-content ol li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.guide-content strong {
    color: var(--primary-color);
}

.guide-content ol {
    counter-reset: item;
    list-style-type: none;
    margin-left: 0;
}

.guide-content ol li {
    counter-increment: item;
    padding-left: 2.5rem;
    position: relative;
}

.guide-content ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Thank You Page */
.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.thank-you-image {
    margin: 2rem auto;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.thank-you-content h2 {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.thank-you-message {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    text-align: left;
}

.thank-you-message p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

.thank-you-info {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow-light),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 71, 137, 0.1);
    text-align: left;
}

.thank-you-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .menu-toggle,
    .hero-buttons,
    .cta-buttons,
    .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .feature-card,
    .step-card,
    .value-card,
    .info-box,
    .faq-item,
    .contact-form,
    .legal-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

