body {
    font-family: Arial, sans-serif;
    background: #fdfbf7;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #222;
}

nav {
    text-align: center;
    margin-bottom: 30px;
}

nav a {
    text-decoration: none;
    color: #117f7f;
    font-weight: bold;
}

nav a:hover {
    color: #000;
}

a {
    text-decoration: none;
    color: #117f7f;
}

a:hover {
    color: #000;
}

ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 30px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 30px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    table, th, td {
        font-size: 14px;
    }
}

fieldset {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"], input[type="email"], textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

button[type="submit"] {
    background: #117f7f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

button[type="submit"]:hover {
    background: #0e6b6b;
}


.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #117f7f;
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

.centered-circle-photo {
    width: 250px; 
    height: 250px;

    border-radius: 50%;

    object-fit: cover;

    display: block;
    margin: 0 auto 30px;

    border: 5px solid #117f7f;

    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.center-text {
    text-align: center;
}

.indent-text {
    text-indent: 40px; 
    margin-bottom: 15px; 
}

.flower-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.flower-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #117f7f;
}

.flower-info {
    flex: 1;
}

.flower-info h3 {
    margin-top: 0;
    color: #117f7f;
}

.about-section {
    max-width: 700px;
    margin: 0 auto 40px auto; 
    text-align: center;
}

.intro-lead {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.slogan {
    font-size: 24px;
    font-weight: bold;
    color: #117f7f; 
    display: block; 
    margin-bottom: 10px;
}

.intro-sub {
    font-size: 16px;
    color: #666;
    font-style: italic;
}