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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f3f0;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.95), rgba(160, 82, 45, 0.95));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: #87CEEB;
            border-radius: 50% 50% 50% 10%;
            position: relative;
            transform: rotate(-45deg);
            flex-shrink: 0;
        }

        .logo-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            text-align: center;
        }

        .logo-sefco {
            background: #8B4513;
            color: white;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 10px;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .logo-text {
            font-size: 8px;
            color: #8B4513;
            font-weight: bold;
            line-height: 1.1;
        }

        .site-title h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .site-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* Navigation */
        nav {
            background: rgba(139, 69, 19, 0.1);
            padding: 1rem 0;
            border-bottom: 1px solid #ddd;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-menu a {
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a:hover {
            background: #8B4513;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect width="800" height="400" fill="%2387CEEB"/><rect x="0" y="300" width="800" height="100" fill="%23DAA520"/><rect x="200" y="200" width="300" height="100" fill="%23CD853F"/><rect x="220" y="180" width="260" height="20" fill="%23A0522D"/><rect x="250" y="220" width="20" height="30" fill="%232F4F4F"/><rect x="350" y="220" width="20" height="30" fill="%232F4F4F"/><rect x="450" y="220" width="20" height="30" fill="%232F4F4F"/><circle cx="100" cy="150" r="60" fill="%23228B22"/><circle cx="600" cy="120" r="80" fill="%23228B22"/></svg>');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            background: rgba(139, 69, 19, 0.8);
            padding: 3rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: #DAA520;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: #B8860B;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(218, 165, 32, 0.4);
        }

        /* Main Content */
        .main-content {
            padding: 4rem 0;
            background: white;
        }

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

        .content-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8B4513, #DAA520);
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .content-card h3 {
            color: #8B4513;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .icon {
            width: 30px;
            height: 30px;
            background: #87CEEB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
            padding: 4rem 0;
        }

        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content h2 {
            color: #8B4513;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #DAA520;
            border-radius: 2px;
        }

        /* Contact Section */
        .contact-section {
            background: #8B4513;
            color: white;
            padding: 3rem 0;
        }

        .contact-content {
            text-align: center;
        }

        .contact-content h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

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

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        /* Footer */
        footer {
            background: #2c1810;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .site-title h1 {
                font-size: 1.5rem;
            }

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

            .hero-content {
                padding: 2rem;
                margin: 0 1rem;
            }

            .nav-menu {
                gap: 1rem;
            }

            .nav-menu a {
                padding: 0.5rem;
                font-size: 0.9rem;
            }

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

        @media (max-width: 480px) {
            .logo {
                width: 60px;
                height: 60px;
            }

            .logo-sefco {
                font-size: 8px;
                padding: 2px 4px;
            }

            .logo-text {
                font-size: 6px;
            }

            .site-title h1 {
                font-size: 1.2rem;
            }

            .site-title p {
                font-size: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .content-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .content-card:nth-child(3) {
            animation-delay: 0.4s;
        }
</style>