@font-face {
    font-family: 'Peckless';
    src: url('/fonts/pecklessNeue-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Peckless';
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Container for layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    padding: 50px 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

header nav {
    margin-top: 20px;
}

header nav a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    margin: 0 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 100px 0;
}

.hero h2 {
    font-size: 72px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    margin-bottom: 40px;
}

.hero button {
    background-color: #000;
    color: #fff;
    padding: 12px 40px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #444;
}

/* Services Section */
.services {
    text-align: center;
    margin-top: 100px;
}

.services h2 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.services p {
    font-size: 20px;
    color: #777;
    margin-bottom: 60px;
    font-weight: 300;
}

.services-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.service-item {
    width: 23%;
    background-color: #f8f8f8;
    padding: 40px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item h3 {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* Button for Services */
.services button {
    background-color: #000;
    color: #fff;
    padding: 12px 40px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    margin-top: 40px;
}

.services button:hover {
    background-color: #444;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

footer p {
    font-size: 16px;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 80%;
        margin-bottom: 40px;
    }

    .hero h2 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }
}


/*@media (max-width: 600px) {*/
/*    h1 { font-size: 24px; }*/
/*    nav { display: block; }*/
/*    nav a { display: block; margin: 5px 0; }*/
/*}*/
