/* Boncuk Proje Atölyesi - Unique Stylesheet */

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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #6B4423;
    --bg-light: #FAF5F0;
    --bg-white: #FFFFFF;
    --border-color: #E8D5C4;
    --shadow: 0 2px 8px rgba(44, 24, 16, 0.1);
    --shadow-hover: 0 4px 16px rgba(44, 24, 16, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Removed - using page-wrapper instead */

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Site Header */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .toggle-bar {
    opacity: 0;
}

.main-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

.menu-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.menu-link.active {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.5rem;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    border-radius: 12px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .hero-picture {
        height: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

.hero-picture {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Learning Section */
.learning-section {
    margin-bottom: 4rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.title-block {
    text-align: center;
    margin-bottom: 3rem;
}

.title-text {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image-wrapper {
    margin-bottom: 1.5rem;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--border-color);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-heading {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 4rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--border-color);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem;
    background-color: var(--bg-white);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Article Section */
.article-section {
    margin-bottom: 3rem;
}

.article-container {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.article-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-main p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.sidebar-image {
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Journey Section */
.journey-section {
    margin-bottom: 3rem;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-step {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-action {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.step-action:hover {
    color: var(--secondary-color);
}

/* Highlight Section */
.highlight-section {
    margin-bottom: 3rem;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: center;
}

.highlight-visual {
    border-radius: 8px;
    overflow: hidden;
}

.highlight-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Materials Section */
.materials-section {
    margin-bottom: 3rem;
}

.category-block {
    margin-bottom: 3rem;
}

.category-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.materials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.material-tile {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.material-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tile-preview {
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.glass-type {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.crystal-type {
    background: linear-gradient(135deg, #E8E8E8, #C0C0C0);
}

.wood-type {
    background: linear-gradient(135deg, #8B4513, #654321);
}

.preview-line {
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

.nylon-thread {
    background: linear-gradient(90deg, #F5F5F5, #E0E0E0);
}

.silk-thread {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.preview-tool {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #808080, #606060);
    border-radius: 4px;
}

.needle-tool::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--bg-white);
    margin: 29px auto;
}

.pliers-tool {
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.board-tool {
    border-radius: 8px;
}

.preview-accessory {
    width: 70px;
    height: 70px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.clasp-acc {
    border-style: double;
}

.ring-acc::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 10px auto;
}

.tile-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tile-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tile-specs {
    list-style: none;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tile-specs li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tile-specs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Tips Section */
.tips-section {
    margin-bottom: 3rem;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.tip-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tip-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Techniques Section */
.techniques-section {
    margin-bottom: 3rem;
}

.technique-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.level-basic {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.level-intermediate {
    background-color: #FFF3E0;
    color: #E65100;
}

.level-advanced {
    background-color: #FCE4EC;
    color: #C2185B;
}

.card-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.card-media {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.card-media img {
    width: 100%;
    height: auto;
    display: block;
}

.instructions-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.instructions-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.instructions-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.instruction-note {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-light);
}

.pattern-diagram {
    margin-top: 1.5rem;
}

.pattern-diagram h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diagram-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diagram-row {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}

.diagram-dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.diagram-dot.offset {
    margin-left: 10px;
}

/* Practice Section */
.practice-section {
    margin-bottom: 3rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.practice-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.practice-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.practice-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Project Section */
.project-section {
    margin-bottom: 3rem;
}

.project-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.intro-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-tag {
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.intro-description {
    color: var(--text-light);
    line-height: 1.8;
}

.materials-needed {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.materials-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.materials-checklist {
    list-style: none;
    color: var(--text-light);
}

.materials-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.materials-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.steps-container {
    margin-bottom: 3rem;
}

.steps-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.step-block {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-heading {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.step-image {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.variations-section {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.variations-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.variations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.variation-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.variation-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.variation-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tips Section (for ipuclari page) */
.tips-category {
    margin-bottom: 4rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tip-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    align-items: center;
}

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content.reverse .about-text-block {
    order: 2;
}

.about-content.reverse .about-image-block {
    order: 1;
}

.about-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    color: var(--text-light);
}

.about-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.about-image-block {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-text {
    color: var(--text-light);
    line-height: 1.6;
}

.community-section {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.community-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-info-block {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-block > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-items {
    margin-bottom: 2rem;
}

.info-entry {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    color: var(--text-light);
    line-height: 1.6;
}

.social-info {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-label {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note-block {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.note-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-note-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-note-block a:hover {
    text-decoration: underline;
}

/* Privacy Section */
.privacy-section {
    margin-bottom: 3rem;
}

.privacy-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.privacy-heading {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-form-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-field a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-field a:hover {
    text-decoration: underline;
}

.form-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.privacy-list {
    list-style: none;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.privacy-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.last-updated {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Site Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    margin-top: auto;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-menu a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Materials Content Section */
.materials-content-section {
    margin-bottom: 3rem;
}

.category-group {
    margin-bottom: 4rem;
}

.group-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.item-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.item-image-container {
    margin-bottom: 1.5rem;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--border-color);
}

.item-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.item-info {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.item-details {
    list-style: none;
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-details li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.item-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Selection Tips Section */
.selection-tips-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.tip-heading {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tip-content {
    color: var(--text-light);
    line-height: 1.6;
}

/* Intro Content Section */
.intro-content-section {
    margin-bottom: 3rem;
}

.intro-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: center;
}

.intro-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-image {
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pathway Section */
.pathway-section {
    margin-bottom: 3rem;
}

.pathway-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pathway-item {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.pathway-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pathway-heading {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pathway-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pathway-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pathway-link:hover {
    color: var(--secondary-color);
}

/* Why Section */
.why-section {
    margin-bottom: 3rem;
}

.why-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: center;
}

.why-image {
    border-radius: 8px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Design */
/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle-text {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Policy Content Section */
.policy-content-section {
    margin-bottom: 3rem;
}

.policy-article {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.article-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-article > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.policy-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-row a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-row a:hover {
    text-decoration: underline;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .main-menu::after {
        content: '×';
        position: fixed;
        top: 1rem;
        right: 1rem;
        font-size: 30px;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1001;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bg-white);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(44, 24, 16, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        font-weight: 400;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-family: Arial, sans-serif;
    }
    
    .main-menu.active::after {
        margin-top: -2px;
    }

    .main-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-menu.active::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        margin-top: 0;
    }

    .menu-link:first-of-type {
        margin-top: 0;
    }

    .welcome-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .welcome-heading {
        font-size: 2rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        grid-template-columns: 1fr;
    }

    .journey-step {
        flex-direction: column;
    }

    .card-body {
        grid-template-columns: 1fr;
    }

    .project-intro {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-content.reverse {
        grid-template-columns: 1fr;
    }

    .about-content.reverse .about-text-block {
        order: 1;
    }

    .about-content.reverse .about-image-block {
        order: 2;
    }
}

