/* Professional styling for OneGuardianship website */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

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

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    max-height: 80px;
    margin: 10px 0;
    width: auto;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    margin: 10px 5px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Services section */
.services {
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.services p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services ul {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    padding-left: 20px;
}

.services ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    width: 300px;
    vertical-align: top;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.service-card p {
    text-align: left;
    margin-bottom: 20px;
}

/* Form styles */
form {
    text-align: left;
}

form label {
    font-weight: bold;
    color: #2c3e50;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #5dade2;
}

/* Responsive design for tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card {
        width: 280px;
        margin: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Responsive design for tablets and mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        max-height: 60px;
        margin: 10px auto;
    }
    
    .nav-menu {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-menu li {
        margin: 5px 10px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .hero {
        padding: 50px 20px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services {
        padding: 30px 0;
    }
    
    .services h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        margin: 15px auto;
        display: block;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
        display: inline-block;
        width: auto;
    }
}

/* Responsive design for mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .nav-menu li {
        margin: 5px 5px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .services {
        padding: 20px 0;
    }
    
    .services h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .services h3 {
        font-size: 1.2rem;
    }
    
    .services p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
        margin: 10px auto;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
        margin: 10px auto;
        display: block;
    }
    
    footer {
        padding: 20px 0;
        font-size: 0.9rem;
    }
    
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .services h2 {
        font-size: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
}

/* Print styles */
@media print {
    header {
        position: static;
    }
    
    .hero {
        background: #3498db;
        color: #fff;
        padding: 30px 20px;
    }
    
    .btn {
        display: none;
    }
    
    footer {
        page-break-after: avoid;
    }
}
</style.css>