        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/CSC_0371.JPG');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-top: 120px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1em 2em;
            background: rgba(68, 68, 68, 0.5);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            backdrop-filter: blur(5px);
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-button:hover {
            background: rgba(51, 51, 51, 0.7);
            transform: translateY(-1px);
        }

        .section {
            padding: 4rem 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2em;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1em;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .photo-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: box-shadow 0.2s ease;
        }

        .photo-card:hover {
            box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        }

        .photo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .photo-info {
            padding: 1.5rem;
        }

        .photo-info h3 {
            font-size: 1.1em;
            margin-bottom: 0.5rem;
            color: #222;
        }

        .photo-meta {
            font-size: 0.9em;
            color: #666;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .photo-meta a {
            color: #444;
            text-decoration: none;
            font-weight: 500;
        }

        .photo-meta a:hover {
            text-decoration: underline;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .feature {
            padding: 2rem;
        }

        .feature svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            color: #444;
        }

        .feature h3 {
            font-size: 1.2em;
            margin-bottom: 1rem;
            color: #222;
        }

        .feature p {
            color: #666;
            font-size: 0.95em;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.2s ease;
        }

        .category-card:hover {
            background: #eee;
        }

        .category-card a {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1em;
        }