:root {
    --primary: #2563eb;
    --dark: #000000;
    --light: #f8f9fa;
    --gray: #6b7280;
    --gradient-start: #f0f5ff;
    --gradient-end: #e6f7ff;
}

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

a {
	width: 100%;
}

button {
	cursor: pointer;
}

li {
	list-style-position: inside;
	list-style: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
	min-height: 100vh;
	background: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.notify {
	text-align: center;
	border: 1px solid #ddd;
	background: #ccf7cc;
}
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
	width: auto;
}

.fieldo {
	position: absolute;
	left: -9999px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

section {
    padding: 4rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: linear-gradient(90deg, 
        #00bfff, 
        #0088cc, 
        #0066aa, 
        #004488
	);
}

.hero {
    display: flex;
    align-items: center;
    border-radius: 0;
	background: linear-gradient(90deg, 
        #00bfff, 
        #0088cc, 
        #0066aa, 
        #004488
	);
	background-size: 300% 300%;
	animation: waterGradient 12s ease infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    color: white;
    margin: 0 auto;
}

.get-started-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.get-started-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.get-started-card:hover {
    transform: translateY(-10px);
}

.get-started-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}

.get-started-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn_100 {
	width: 100%;
}
.btn {
    display: inline-block;
	width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: center;
    margin-top: auto;
	margin-bottom: 15px;
	text-align: center;
}

.btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

#c {
	margin: 2.5rem auto;
	width: 100%;
}

.services-grid.center, .services-grid.center h3 {
	color: white;
}

.center {
	text-align: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
	align-items: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark);
    text-align: center;
}

.service-card p, .service-card ul {
    color: var(--dark);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.services-grid li::before, #c li::before {
	content: '•';
	letter-spacing: 0.4em;
}

.price-container {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.about {
    margin: 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-content:hover {
    transform: translateY(-5px);
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact {
    background: white;
    margin: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
    flex-grow: 1;
	text-align: left;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #1d4ed8;
}

.contact-info h4 {
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
	text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #888;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      margin-bottom: 15px;
    }
    .faq-question {
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      padding: 15px 0;
      color: #2c3e50;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s;
    }
    .faq-question:hover {
      color: #1a73e8;
    }
    .faq-question::after {
      content: '+';
      font-size: 20px;
      color: #555;
      transition: transform 0.3s ease;
    }
    /* Hide checkbox */
    .faq-toggle {
      display: none;
    }
    /* Toggle icon when checked */
    .faq-toggle:checked + .faq-question::after {
      content: '−';
    }
    /* Answer visibility */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      color: #555;
      padding-left: 10px;
    }
    .faq-toggle:checked ~ .faq-answer {
      max-height: 300px;
      padding: 10px 0;
    }

footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
    margin: 2rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

h3 {
	font-size: 1.5rem;
    margin: 1.5rem 0;
    color: #000;
}

.div_container {
	max-width: 800px;
	margin: 0 auto;
	color: white;
	line-height: 1.8;
}

.div_container h3 {
	color: white;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

    @keyframes waterGradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .box {
      width: 80%;
      height: 60%;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      text-shadow: 0 0 5px rgba(0,0,0,0.3);
    }
	
@media (max-width: 992px) {
    .get-started-grid, .services-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        height: auto;
        padding: 5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}   