/* general fonts and stuff */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fc;
    color: #2d3648;
}
header {
    background: #454eea;
    color: #fff;
    padding: 18px 0;
    margin-bottom: 0;
}
.container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
}
.brand {
    font-size: 2em;
    font-weight: bold;
}
nav span {
    font-size: 1.06em;
}
.cta-btn {
    background: #ffd600;
    color: #3820a7;
    border: none;
    border-radius: 5px;
    padding: 7px 22px;
    margin-left: 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 8px #2222a511;
    cursor: pointer;
    display: inline-block;
    transition: background 0.15s;
}
.cta-btn:hover {
    background: #fff48f;
}
main {
    max-width: 860px;
    margin: 38px auto;
    padding: 0 18px;
}
.intro {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 28px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(120,90,215,0.09);
}

.services {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services li {
    margin: 16px 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.service-link {
    padding: 10px 20px;
    font-size: 1.17em;
    text-decoration: none;
    color: #454eea;
    font-weight: 600;
    background: #fefefe;
    border-radius: 6px;
    box-shadow: 0 1px 6px #454eea17;
    margin-right: 14px;
    transition: background 0.13s, color 0.13s;
}
.service-link.fotofan {
    color: #fff;
    background: #454eea;
}
.service-link:hover {
    background: #e8eaff;
    color: #25288a;
}
.service-link.fotofan:hover {
    background: #2222a7;
    color: #ffd600;
}
.in-development {
    cursor: pointer;
    color: #aaa;
    background: #f6f6f6;
}
.desc {
    color: #767992;
    font-size: 0.97em;
}

.main-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.services-column {
     flex: 1.1;
    background: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 6px 28px rgba(120,90,215,0.08);
}

.news-column {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 6px 28px rgba(120,90,215,0.08);
    display: flex;
    flex-direction: column;
}

.news-column h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #454eea;
    font-size: 1.75em;
}

.news-card {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex: 1;
}

.news-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 6px #454eea17;
}

.news-body h4 {
    margin: 0 0 4px 0;
    font-size: 1.05em;
}

.news-body p {
    margin: 0;
    font-size: 1em;
    color: #555;
}

@media (max-width: 700px) {
    .main-layout {
        flex-direction: column;
    }
}



.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(53, 81, 167, 0.36);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #fff;
    padding: 32px 35px;
    border-radius: 14px;
    min-width: 290px;
    box-shadow: 0 8px 24px rgba(120,90,215,0.13);
    text-align: center;
    position: relative;
}
.modal-content h3 {
    margin-top: 0;
    color: #454eea;
    font-size: 1.28em;
}
@media (max-width: 700px) {
    .container, main { max-width: 97vw; padding: 0 6vw;}
    .intro, .modal-content { padding: 16px 6vw;}
}
