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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #1a1a1a;
}

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

header {
    background: #111;
    color: white;
    padding: 20px 0;
    border-bottom: 3px solid #fff;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 0 #ccc, 0 0 10px rgba(255,255,255,0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s;
    padding: 5px 10px;
}

nav a:hover {
    color: #ccc;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    nav ul {
        justify-content: center;
    }
}

main {
    padding: 40px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background: #f4f4f4;
    border-radius: 0;
    font-size: 14px;
    box-shadow: 2px 2px 0 #ccc;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #333;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #666;
}

.breadcrumbs a {
    color: #555;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #000;
}

.last-updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 10px 0 !important;
}

.hero {
    background: #f4f4f4;
    padding: 60px 40px;
    border-radius: 0;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.3) 49%, rgba(255,255,255,0.3) 51%, transparent 52%);
    pointer-events: none;
}

.hero h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 0 #ccc;
}

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-image-right {
    width: 100%;
    max-width: 500px;
    height: auto;
    float: right;
    margin: 0 0 20px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .section-image-right {
        float: none;
        margin: 20px auto;
        display: block;
    }
}

/* Creative Image Layouts */
.image-zigzag {
    position: relative;
    margin: 30px 0;
}

.zigzag-left {
    width: 60%;
    max-width: 600px;
    height: auto;
    float: left;
    margin: 0 40px 20px 0;
    box-shadow: -10px 10px 0 #ccc, 0 10px 30px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.zigzag-left:hover {
    transform: rotate(0deg);
}

.image-overlap {
    position: relative;
    margin: 30px 0;
    min-height: 400px;
}

.overlap-main {
    width: 70%;
    max-width: 700px;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 10px 10px 0 #333, 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2;
}

.overlap-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.image-gallery {
    margin: 30px 0;
}

.gallery-featured {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 5px solid #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    aspect-ratio: 16/9;
    background: #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #333;
}

.gallery-placeholder {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .zigzag-left {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }
    
    .overlap-main {
        position: relative;
        width: 100%;
        right: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

section {
    background: #f4f4f4;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 2px;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.5) 49%, rgba(255,255,255,0.5) 51%, transparent 52%);
    transform: rotate(-15deg);
}

h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 0 #ccc;
}

h3 {
    color: #555;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

.resource-box {
    background: #fff;
    border-left: 5px solid #333;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s;
    box-shadow: 2px 2px 0 #ccc;
}

.resource-box:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 0 #999;
}

.resource-box h3 {
    color: #333;
    margin-top: 0;
}

.resource-box a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
}

.resource-box a:hover {
    color: #000;
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #333;
    background: #fff;
    box-shadow: 2px 2px 0 #ccc;
}

.share-btn:hover {
    background: #333;
    color: #fff;
    box-shadow: 4px 4px 0 #999;
}

.faq-item {
    background: #fff;
    border: 2px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
    box-shadow: 2px 2px 0 #ccc;
}

.faq-item:hover {
    box-shadow: 5px 5px 0 #999;
}

.faq-item h3 {
    color: #333;
    margin-top: 0;
    font-size: 20px;
}

footer {
    background: #111;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 50px;
    border-top: 3px solid #fff;
    box-shadow: 0 -5px 20px rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 0 #666;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 2px solid #fff;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 8px 0;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom p:first-child {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}
