:root {
--primary-color: #1a472a;
--secondary-color: #2d5f3f;
--accent-color: #4a9960;
--light-bg: #f8faf9;
--white: #ffffff;
--text-dark: #1a1a1a;
--text-medium: #4a4a4a;
--text-light: #767676;
--border-color: #e0e0e0;
--success-color: #4a9960;
--error-color: #c62828;
--warning-color: #f57c00;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
--shadow-md: 0 4px 12px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
--transition: all 0.3s ease;
--font-base-size: 16px;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
font-size: var(--font-base-size);
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--white);
overflow-x: hidden;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

ul {
list-style: none;
}

button {
cursor: pointer;
border: none;
background: none;
font-family: inherit;
transition: var(--transition);
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.main-header {
background-color: var(--white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 20px;
max-width: 1400px;
margin: 0 auto;
}

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.logo-section img {
border-radius: 8px;
}

.site-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.primary-nav ul {
display: flex;
gap: 30px;
}

.nav-links a {
color: var(--text-dark);
font-weight: 500;
padding: 8px 0;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.nav-links a.active {
color: var(--primary-color);
}

.font-controls {
display: flex;
gap: 10px;
}

.font-btn {
width: 36px;
height: 36px;
border: 2px solid var(--border-color);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--text-medium);
}

.font-btn:hover {
border-color: var(--accent-color);
color: var(--primary-color);
}

.hero-section {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26,71,42,0.9) 0%, rgba(45,95,63,0.85) 100%);
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--white);
max-width: 800px;
padding: 0 20px;
}

.hero-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 35px;
opacity: 0.95;
}

.cta-primary {
display: inline-block;
background-color: var(--accent-color);
color: var(--white);
padding: 16px 40px;
border-radius: 8px;
font-weight: 600;
font-size: 1.1rem;
box-shadow: var(--shadow-md);
}

.cta-primary:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.intro-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.section-heading {
font-size: 2.5rem;
color: var(--primary-color);
text-align: center;
margin-bottom: 30px;
font-weight: 700;
}

.intro-text {
font-size: 1.2rem;
line-height: 1.8;
color: var(--text-medium);
text-align: center;
max-width: 900px;
margin: 0 auto;
}

.features-section {
padding: 80px 20px;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin-top: 50px;
}

.feature-card {
background: var(--white);
border-radius: 12px;
padding: 35px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.feature-icon {
width: 70px;
height: 70px;
background-color: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
color: var(--accent-color);
}

.feature-card h3 {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.feature-card p {
color: var(--text-medium);
margin-bottom: 20px;
line-height: 1.7;
}

.feature-card img {
border-radius: 8px;
margin-top: 20px;
width: 100%;
height: 220px;
object-fit: cover;
}

.process-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.process-timeline {
max-width: 900px;
margin: 50px auto 0;
}

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.timeline-item:not(:last-child)::before {
content: '';
position: absolute;
left: 24px;
top: 60px;
width: 2px;
height: calc(100% + 40px);
background-color: var(--border-color);
}

.timeline-marker {
flex-shrink: 0;
width: 50px;
height: 50px;
background-color: var(--accent-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.3rem;
box-shadow: var(--shadow-md);
}

.timeline-content h4 {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 10px;
}

.timeline-content p {
color: var(--text-medium);
line-height: 1.7;
}

.risk-section {
padding: 80px 20px;
}

.risk-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-top: 40px;
}

.risk-list {
margin-top: 25px;
}

.risk-list li {
padding: 15px 0;
border-bottom: 1px solid var(--border-color);
color: var(--text-medium);
line-height: 1.7;
}

.risk-list li:last-child {
border-bottom: none;
}

.risk-list strong {
color: var(--primary-color);
}

.risk-visual img {
border-radius: 12px;
box-shadow: var(--shadow-md);
width: 100%;
height: 100%;
object-fit: cover;
}

.testimonials-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow-sm);
border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
font-style: italic;
color: var(--text-medium);
margin-bottom: 20px;
line-height: 1.7;
}

.testimonial-card footer {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-card strong {
color: var(--primary-color);
font-size: 1.05rem;
}

.testimonial-card span {
color: var(--text-light);
font-size: 0.95rem;
}

.cta-section {
padding: 80px 20px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
}

.cta-box {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-box h2 {
font-size: 2.3rem;
margin-bottom: 20px;
}

.cta-box p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.8;
}

.cta-button-large {
display: inline-block;
background-color: var(--white);
color: var(--primary-color);
padding: 18px 50px;
border-radius: 8px;
font-weight: 700;
font-size: 1.15rem;
box-shadow: var(--shadow-md);
}

.cta-button-large:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.cta-disclaimer {
margin-top: 40px;
padding: 25px;
background-color: rgba(255,255,255,0.1);
border-radius: 8px;
text-align: left;
}

.cta-disclaimer p {
font-size: 0.9rem;
opacity: 0.9;
margin: 0;
}

.site-footer {
background-color: var(--text-dark);
color: var(--white);
padding: 60px 20px 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
max-width: 1400px;
margin: 0 auto 40px;
}

.footer-column h4 {
margin-bottom: 20px;
font-size: 1.2rem;
color: var(--white);
}

.footer-column p {
opacity: 0.8;
line-height: 1.7;
margin-bottom: 10px;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent-color);
}

.footer-contact li {
opacity: 0.8;
margin-bottom: 8px;
}

.footer-reg {
font-size: 0.9rem;
margin-top: 15px;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
opacity: 0.7;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--white);
box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
padding: 25px;
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-text h3 {
color: var(--primary-color);
margin-bottom: 10px;
font-size: 1.3rem;
}

.cookie-text p {
color: var(--text-medium);
margin-bottom: 20px;
line-height: 1.7;
}

.cookie-text a {
color: var(--accent-color);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
}

.accept-btn {
background-color: var(--accent-color);
color: var(--white);
}

.accept-btn:hover {
background-color: var(--secondary-color);
}

.customize-btn {
background-color: var(--light-bg);
color: var(--text-dark);
}

.customize-btn:hover {
background-color: var(--border-color);
}

.reject-btn {
background-color: transparent;
color: var(--text-medium);
border: 1px solid var(--border-color);
}

.reject-btn:hover {
border-color: var(--text-medium);
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 80px 20px;
text-align: center;
color: var(--white);
}

.page-title {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 800;
}

.page-description {
font-size: 1.25rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

.blog-listing {
padding: 80px 20px;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 40px;
margin-top: 50px;
}

.post-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.post-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.post-image {
width: 100%;
height: 280px;
overflow: hidden;
}

.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
transform: scale(1.1);
}

.post-content {
padding: 30px;
}

.post-title a {
font-size: 1.4rem;
color: var(--primary-color);
font-weight: 700;
line-height: 1.4;
}

.post-title a:hover {
color: var(--accent-color);
}

.post-meta {
display: flex;
align-items: center;
gap: 20px;
margin: 15px 0;
font-size: 0.9rem;
color: var(--text-light);
}

.post-date {
display: flex;
align-items: center;
gap: 5px;
}

.post-category {
background-color: var(--light-bg);
color: var(--primary-color);
padding: 4px 12px;
border-radius: 4px;
font-weight: 600;
}

.post-excerpt {
color: var(--text-medium);
line-height: 1.7;
margin-bottom: 20px;
}

.read-more {
color: var(--accent-color);
font-weight: 600;
display: inline-flex;
align-items: center;
}

.read-more:hover {
color: var(--primary-color);
}

.mission-section {
padding: 80px 20px;
}

.mission-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.mission-text h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 25px;
}

.mission-text p {
color: var(--text-medium);
line-height: 1.8;
margin-bottom: 20px;
}

.mission-image img {
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.values-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 35px;
margin-top: 50px;
}

.value-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow-sm);
}

.value-icon {
width: 80px;
height: 80px;
background-color: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: var(--accent-color);
}

.value-card h3 {
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.value-card p {
color: var(--text-medium);
line-height: 1.7;
}

.team-section {
padding: 80px 20px;
}

.team-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 50px;
color: var(--text-medium);
font-size: 1.1rem;
line-height: 1.8;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 50px;
}

.team-member-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.team-member-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.team-member-card img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member-card h3 {
font-size: 1.4rem;
color: var(--primary-color);
margin: 20px 25px 5px;
}

.member-role {
color: var(--accent-color);
font-weight: 600;
margin: 0 25px 15px;
}

.team-member-card p {
color: var(--text-medium);
line-height: 1.7;
margin: 0 25px 25px;
}

.approach-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.approach-content {
max-width: 900px;
margin: 0 auto;
}

.approach-content > p {
color: var(--text-medium);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 40px;
}

.approach-pillars {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.pillar {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow-sm);
}

.pillar h4 {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 12px;
}

.pillar p {
color: var(--text-medium);
line-height: 1.7;
}

.cta-section-about {
padding: 80px 20px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
text-align: center;
}

.cta-section-about h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-section-about p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
}

.contact-content-section {
padding: 80px 20px;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
margin-top: 40px;
}

.contact-info-side h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 30px;
}

.contact-info-blocks {
margin-bottom: 40px;
}

.info-block {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.info-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background-color: var(--light-bg);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-color);
}

.info-text h3 {
font-size: 1.2rem;
color: var(--primary-color);
margin-bottom: 8px;
}

.info-text p {
color: var(--text-medium);
line-height: 1.7;
}

.info-text a {
color: var(--accent-color);
}

.info-text a:hover {
text-decoration: underline;
}

.company-details {
background-color: var(--light-bg);
padding: 25px;
border-radius: 8px;
}

.company-details h3 {
font-size: 1.2rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.company-details p {
color: var(--text-medium);
margin-bottom: 8px;
}

.contact-form-side h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 600;
color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px 15px;
border: 2px solid var(--border-color);
border-radius: 6px;
font-family: inherit;
font-size: 1rem;
transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
}

.form-checkbox {
flex-direction: row;
align-items: flex-start;
gap: 10px;
}

.form-checkbox input {
margin-top: 4px;
width: 18px;
height: 18px;
}

.form-checkbox label {
font-weight: 400;
flex: 1;
}

.form-checkbox a {
color: var(--accent-color);
text-decoration: underline;
}

.submit-btn {
background-color: var(--accent-color);
color: var(--white);
padding: 16px 40px;
border-radius: 6px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: var(--transition);
}

.submit-btn:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.map-section {
padding: 80px 20px;
background-color: var(--light-bg);
}

.map-container {
margin-top: 40px;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
}

.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
z-index: 10000;
align-items: center;
justify-content: center;
}

.modal.show {
display: flex;
}

.modal-content {
background: var(--white);
padding: 50px;
border-radius: 12px;
max-width: 500px;
text-align: center;
box-shadow: var(--shadow-lg);
}

.modal-icon {
width: 80px;
height: 80px;
background-color: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: var(--success-color);
}

.modal-content h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.modal-content p {
color: var(--text-medium);
line-height: 1.7;
margin-bottom: 30px;
}

.modal-close-btn {
background-color: var(--accent-color);
color: var(--white);
padding: 12px 40px;
border-radius: 6px;
font-weight: 600;
}

.modal-close-btn:hover {
background-color: var(--secondary-color);
}

.post-main {
padding-bottom: 80px;
}

.post-header {
background-color: var(--light-bg);
padding: 50px 20px 30px;
}

.post-meta-header {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 25px;
flex-wrap: wrap;
}

.post-category-badge {
background-color: var(--accent-color);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-weight: 600;
font-size: 0.9rem;
}

.post-date-display {
color: var(--text-light);
display: flex;
align-items: center;
gap: 6px;
}

.post-main-title {
font-size: 2.8rem;
color: var(--primary-color);
line-height: 1.3;
margin-bottom: 20px;
font-weight: 800;
}

.post-author-info {
display: flex;
gap: 25px;
color: var(--text-medium);
flex-wrap: wrap;
}

.reading-time {
display: flex;
align-items: center;
gap: 6px;
}

.post-featured-image {
width: 100%;
max-height: 500px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content-wrapper {
margin-top: 60px;
}

.post-body {
max-width: 850px;
margin: 0 auto;
}

.lead-paragraph {
font-size: 1.25rem;
line-height: 1.9;
color: var(--text-medium);
margin-bottom: 40px;
font-weight: 400;
}

.post-body h2 {
font-size: 2rem;
color: var(--primary-color);
margin: 50px 0 20px;
font-weight: 700;
}

.post-body h3 {
font-size: 1.6rem;
color: var(--secondary-color);
margin: 40px 0 15px;
font-weight: 600;
}

.post-body p {
color: var(--text-medium);
line-height: 1.9;
margin-bottom: 25px;
font-size: 1.05rem;
}

.post-body ul,
.post-body ol {
margin: 25px 0;
padding-left: 30px;
}

.post-body li {
color: var(--text-medium);
line-height: 1.9;
margin-bottom: 12px;
list-style: disc;
}

.post-body strong {
color: var(--primary-color);
font-weight: 600;
}

.post-disclaimer {
background-color: var(--light-bg);
border-left: 4px solid var(--warning-color);
padding: 30px;
margin: 60px 0 40px;
border-radius: 8px;
}

.post-disclaimer h3 {
color: var(--warning-color);
font-size: 1.3rem;
margin-bottom: 15px;
}

.post-disclaimer p {
color: var(--text-medium);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

.post-navigation {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid var(--border-color);
flex-wrap: wrap;
gap: 20px;
}

.back-to-blog {
color: var(--accent-color);
font-weight: 600;
}

.back-to-blog:hover {
color: var(--primary-color);
}

.next-prev-posts {
display: flex;
gap: 20px;
}

.prev-post,
.next-post {
color: var(--accent-color);
font-weight: 600;
}

.prev-post:hover,
.next-post:hover {
color: var(--primary-color);
}

@media (max-width: 1024px) {
.header-container {
flex-wrap: wrap;
gap: 20px;
}

.hero-title {
font-size: 2.3rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

.section-heading {
font-size: 2rem;
}

.risk-content-grid,
.mission-content,
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 768px) {
.primary-nav ul {
flex-direction: column;
gap: 15px;
width: 100%;
}

.hero-section {
height: 500px;
}

.hero-title {
font-size: 1.9rem;
}

.hero-subtitle {
font-size: 1rem;
}

.feature-grid,
.posts-grid,
.team-grid {
grid-template-columns: 1fr;
}

.page-title {
font-size: 2.2rem;
}

.post-main-title {
font-size: 2rem;
}

.footer-grid {
grid-template-columns: 1fr;
}

.cookie-buttons {
flex-direction: column;
}

.cookie-btn {
width: 100%;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 1.6rem;
}

.cta-primary,
.cta-button-large {
padding: 14px 30px;
font-size: 1rem;
}

.section-heading {
font-size: 1.7rem;
}

.post-main-title {
font-size: 1.7rem;
}

.modal-content {
padding: 30px 20px;
margin: 20px;
}
}