
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9fc;
    color: #333;
}
header {
    background-color: #6AA9D5;
    color: white;
    text-align: center;
    padding: 2em 1em;
}
.logo {
    width: 80px;
}
.slogan {
    font-size: 1.2em;
    margin-top: 0.5em;
}
nav {
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline-block;
    margin: 1em;
}
nav ul li a {
    text-decoration: none;
    color: #6AA9D5;
    font-weight: bold;
}
main {
    padding: 2em;
}
section {
    margin-bottom: 3em;
}
footer {
    background-color: #6AA9D5;
    color: white;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}
form {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background-color: #6AA9D5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #5b98c4;
}
blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    background: #e8f4fc;
    padding: 15px;
    border-left: 5px solid #6AA9D5;
}

.hero {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    text-align: center;
    padding: 4em 2em;
}
.hero .cta-button {
    background-color: #ffc107;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1em;
    display: inline-block;
}
.section-alt {
    background-color: #f0f9ff;
    padding: 2em;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
}
.card {
    background: white;
    padding: 1.5em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-width: 300px;
}
.tools-list {
    list-style: none;
    padding-left: 0;
}
.tools-list li {
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.section-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5em;
}
body {
    background: #f9fbfc;
}
.section-alt {
    background: #eaf6ff;
}

.hero-video {
    position: relative;
    height: 90vh;
    overflow: hidden;
    color: white;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4em 2em;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content .logo {
    width: 80px;
}

.hero-banner {
    position: relative;
    height: 85vh;
    overflow: hidden;
    color: white;
}
.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4em 2em;
    background: rgba(0, 0, 0, 0.4);
}

.section-img {
    transition: transform 0.3s ease;
}
.section-img:hover {
    transform: scale(1.03);
}
.card::before {
    content: "🎯 ";
}
.tools-list li::before {
    content: "✔ ";
    margin-right: 0.5em;
}

.icon-title {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-right: 10px;
}
