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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Video Background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

header h1 {
    font-size: 3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #5a7c5b;
    font-style: italic;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #2c5f2d;
    margin-bottom: 1rem;
    font-weight: 400;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.service ul {
    list-style: none;
    padding-left: 0;
}

.service li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a7c5b;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    main {
        padding: 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
}