
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5fbf7, #eef7ff);
    color: #244034;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coming-soon {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.badge {
    background: #ffc10773;
    display: inline-block;
    color: #FF6B6B;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border:2px solid #FF6B6B;
}

h1 {
    font-size: clamp(28px, 5vw, 62px);
    color: #2f7d46;
    margin-bottom: 10px;
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
    margin-bottom: 20px;
    color: #9b6aac;
}

.tagline {
    font-size: 20px;
    color: #4c6658;
    margin-bottom: 25px;
    font-style: italic;
    text-align: left;
}

.description {
    max-width: 1160px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.7;
    color: #52685b;
    text-align: left;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
    text-align: left;
}

.card {
    background: #f7fbf8;
    border: 1px solid #dceee2;
    border-radius: 20px;
    padding: 25px;
}

.card h3 {
    color: #2f7d46;
    margin-bottom: 15px;
    font-size: 22px;
}

.qr {
    width: 170px;
    max-width: 100%;
    display: block;
    margin: 15px auto 0;
    border-radius: 12px;
}

.donate-btn {
    display: inline-block;
    margin-top: 15px;
    background: #2f7d46;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition:.5s;
}
.donate-btn:hover{
    background: #9b6aac;

}
.column-table{
    display:table;
    width: 100%;
}
.column-td{
    display:table-cell;
    width: calc(50% - 0px);
    vertical-align: middle;
    text-align: center;
}
#separator{
    border-right: 1px solid #77777754;
}
.linka{
    color:#9b6aac;
    font-weight:bold;
}
.contact p {
    margin-bottom: 10px;
    color: #52685b;
    line-height: 1.5;
}

footer {
    margin-top: 35px;
    font-size: 14px;
    color: #789084;
}

@media (max-width: 700px) {
    .coming-soon {
    padding: 30px 22px;
    }

    .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
    }

    
.donate-btn {
    display: inline-block;
    margin-top: 15px;
    background: #2f7d46;
    color: #ffffff;
    padding: 9px 5px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition:.5s;
    margin-left: 10px;
}
.donate-btn:hover{
    background: #9b6aac;

}
}
.socialLinks {
    text-align: center;
    margin: 30px 0 20px;
}

.socialLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: #2e8b57;
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    font-size: 22px;

    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(46,139,87,.25);
}

.socialLinks a:hover {
    background: #246c44;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(46,139,87,.35);
}
.socialLinks {
    text-align: center;
    margin: 30px 0 20px;
}

.socialLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 8px;

    background: #2e8b57;
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    font-size: 22px;

    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(46,139,87,.25);
}

.socialLinks a:hover {
    background: #246c44;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(46,139,87,.35);
}