/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #52a6b2;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    float: left;
    margin: 0;
    font-size: 2em;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section Styles */
#hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    margin: 0;
}

#hero p {
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    background: #52a6b2;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background: #0056b3;
}

/* Section Styles */
.section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.usluge-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.usluga {
    background: #52a6b2;
    color: #fff;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-radius: 8px;
}

.usluga h3 {
    margin-bottom: 10px;
}

.kontakt-forma {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-grupa {
    display: flex;
    flex-direction: column;
}

.form-grupa label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-grupa input,
.form-grupa textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.kontakt-forma .btn {
    align-self: flex-start;
}

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