/* Custom Fonts */
body {
    font-family: 'Roboto', sans-serif;
}

/* Hero Section - Paintbrush Stroke Effect */
#hero {
    position: relative;
    overflow: hidden;
}

#paintbrushCanvas {
    background: white;
}

/* Pricing Cards */
#pricing .card {
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

#pricing .card:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.btn-primary:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Responsive Video */
.aspect-w-16 {
    position: relative;
    width: 100%;
}

.aspect-w-16::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.aspect-w-16 > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    /* Adjustments for larger screens */
    #hero .text-center {
        text-align: left;
    }
}

